body, html {
    padding: 0;
    margin: 0;
    font-family: 'Comic Neue', sans-serif;
}

* {
    box-sizing: border-box;
}

.container {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 75% 25%;
    grid-template-rows: 75% 25%;
    grid-template-areas: 
        "main side"
        "main side";  /* bathrooms ocupa ambas columnas */
}

.location {
    border-radius: 5px;
    position: fixed;
    height: 22px;
    font-size: 1rem;
    width: auto;
    padding: 4px;
    top:10px;
    left: 0px;
    background: #ddd;
    color: #1072fb;
}
h5 {
    margin: 0;
    padding: 0;
}
.main-info {
    grid-area: main;
    color:white;
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 100%;
    grid-template-areas: "gender availability";
    margin: 2px;
}

.side-panel {
    grid-area: side;
    margin: 2px;
    overflow: scroll;
}

.additional-bathrooms {
    grid-area: bathrooms;
    display: flex;
    flex-direction: row;
}

.bathroom-gender {
    grid-area: gender;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 20% 80%;
    grid-template-areas: 
                    "logo"
                    "info-gender";
}
.bathroom-gender .logo {
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bathroom-gender .icon {
    background: #1072fb;
    grid-area: info-gender;
    flex:1;
    font-size: 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin:2px;
}
.bathroom-availability {
    grid-area: availability;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.info {
    flex: 1;
    display: flex;
    color: rgb(7, 0, 0);
    transition: all 0.3s ease;
    margin:5px;
    border-radius: 15px;
    flex-direction: row;
    box-sizing: border-box;
    overflow: hidden;
}
.info .icon {
    width: 20%;
    font-size: 3rem;
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1109ec;
}
.info .available {
    width: 40%;
    font-size: 4rem;
    font-weight: 1000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.counter {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.counter .busy,.counter .out {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.bathrooms .items {
    padding: 2px;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    margin-top: 2px;
    margin-left: 12px;
}

.bathrooms .item {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    margin: 1px;
}

.available {
    background: #18db4c;
}

.out {
    background: #e2e506;
}

.busy {
    background: #db1818;
}

.bathrooms {
    flex: 0.25;
    display: flex;
    flex-direction: column;

    /* Estilo tipo card */
    background: linear-gradient(155deg, #f8f6f6 10%, #dbdce1 100%);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px;
    margin:2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    justify-content: right;
    color: #1072fb;
}
.bathrooms h5{
    white-space: nowrap;
}


.bathrooms-count {
    flex: 0.25;
    display: flex;
    flex-direction: column;

    /* Estilo tipo card */
    background: linear-gradient(155deg, #f8f6f6 10%, #dbdce1 100%);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px;
    margin: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    justify-content: right;
    color: #1072fb;
}
.bathrooms-count h5{
    white-space: nowrap;
    overflow: hidden;
    flex: .25;
}

.bathrooms-count .collection {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.bathrooms-count .collection .items-count{
    width: 33%;
    display: flex;
    flex-direction: column;
    margin: 1px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color:White;
}

.bathrooms-count .collection .items-count i{
    font-size: 1rem;
    position: relative;
    top:2px;
    left: 16px;
}
.bathrooms-count .collection .items-count span{
    font-size: 3rem;
}