/* _content/ParkMan/Components/BookingForm.razor.rz.scp.css */
.modal[b-tif4yo3hn1] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-content[b-tif4yo3hn1] {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal h4[b-tif4yo3hn1] {
    margin-bottom: 15px;
}

.parking-list[b-tif4yo3hn1] {
    list-style: none;
    padding: 0;
}

.parking-item[b-tif4yo3hn1] {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    padding: 10px;
    border: 1px solid #ccc;
    margin: 5px 0;
    cursor: pointer;
    transition: background-color 0.2s, border 0.2s;
}

    .parking-item.selected[b-tif4yo3hn1] {
        background-color: #007bff;
        color: #fff;
        border: 1px solid #007bff;
    }

        .parking-item.selected:hover[b-tif4yo3hn1] {
            background-color: #0056b3;
            border: 1px solid #0056b3;
        }


.parking-item[b-tif4yo3hn1] {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    padding: 10px;
    border: 1px solid #ccc;
    margin: 5px 0;
    cursor: pointer;
    transition: background-color 0.2s, border 0.2s;
}

.parking-info[b-tif4yo3hn1] {
    flex: 1;
    margin-left: 10px;
    display: flex;
    flex-direction: row; /* Display items in a row layout */
    align-items: center; /* Center vertically within the container */
}

.floor-number[b-tif4yo3hn1] {
    font-weight: bold;
    font-size: 1.1rem;
}

.battery-icon[b-tif4yo3hn1] {
    margin-left: 10px; /* Add margin to separate the battery icon from the floor and number */
}

.parking-name[b-tif4yo3hn1] {
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 10px; /* Add margin to separate the parking name from the battery icon */
}

.parking-type[b-tif4yo3hn1] {
    color: #777;
}
/* _content/ParkMan/Components/ConfirmModal.razor.rz.scp.css */
.modal[b-b2afmle5tq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-content[b-b2afmle5tq] {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal h4[b-b2afmle5tq] {
    margin-bottom: 15px;
}

.parking-list[b-b2afmle5tq] {
    list-style: none;
    padding: 0;
}

.parking-item[b-b2afmle5tq] {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    padding: 10px;
    border: 1px solid #ccc;
    margin: 5px 0;
    cursor: pointer;
    transition: background-color 0.2s, border 0.2s;
}

    .parking-item.selected[b-b2afmle5tq] {
        background-color: #007bff;
        color: #fff;
        border: 1px solid #007bff;
    }

        .parking-item.selected:hover[b-b2afmle5tq] {
            background-color: #0056b3;
            border: 1px solid #0056b3;
        }


.parking-item[b-b2afmle5tq] {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    padding: 10px;
    border: 1px solid #ccc;
    margin: 5px 0;
    cursor: pointer;
    transition: background-color 0.2s, border 0.2s;
}

.parking-info[b-b2afmle5tq] {
    flex: 1;
    margin-left: 10px;
    display: flex;
    flex-direction: row; /* Display items in a row layout */
    align-items: center; /* Center vertically within the container */
}

.floor-number[b-b2afmle5tq] {
    font-weight: bold;
    font-size: 1.1rem;
}

.battery-icon[b-b2afmle5tq] {
    margin-left: 10px; /* Add margin to separate the battery icon from the floor and number */
}

.parking-name[b-b2afmle5tq] {
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 10px; /* Add margin to separate the parking name from the battery icon */
}

.parking-type[b-b2afmle5tq] {
    color: #777;
}
/* _content/ParkMan/Components/DaySquare.razor.rz.scp.css */
.day-container[b-3fnund733y] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.day-square[b-3fnund733y] {
    min-width: 20px;
    min-height: 20px;
    width: 17vw;
    height: 17vw;
    max-height: 100px;
    max-width: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: min(3vw, 20px);
    /*margin-top: 10px;*/ /* Add some margin to separate the day name from the square */
}

.day-name[b-3fnund733y] {
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    text-align: center; /* Center the day name */
}

.available[b-3fnund733y] {
    background-color: lightgreen;
    cursor: pointer;
}

.not-available[b-3fnund733y] {
    background-color: lightcoral;
}

.past-day.day-square[b-3fnund733y] {
    background-color: lightgray;
}

.top-left-info[b-3fnund733y] {
    float: left;
}

.top-right-info[b-3fnund733y] {
    float: right;
}

.day-info[b-3fnund733y] {
    text-align: center;
    padding: 1rem;
    line-height: 1.3rem;
}

.day-date[b-3fnund733y] {
    font-size: min(4vw, 20px);
}

.booked-by-me[b-3fnund733y] {
    cursor: pointer;
    background-color: paleturquoise
}

    .booked-by-me.selected[b-3fnund733y] {
        background-color: paleturquoise;
        border: 0.3rem solid turquoise;
    }

    .booked-by-me:hover[b-3fnund733y] {
        background-color: paleturquoise;
        border: 0.4rem solid turquoise;
    }
/* _content/ParkMan/Components/MonthNavigation.razor.rz.scp.css */
.month-navigation[b-fl3xjjo0gq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0px;
    padding-top: 10px;
}

    .month-navigation button[b-fl3xjjo0gq] {
        margin: 0 10px;
    }

.current-month-container[b-fl3xjjo0gq] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.current-month[b-fl3xjjo0gq] {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.current-year[b-fl3xjjo0gq] {
    font-size: 1.2rem;
}

.month-container[b-fl3xjjo0gq] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.day-container[b-fl3xjjo0gq] {
    display: flex;
    align-items: center;
}

.day-square[b-fl3xjjo0gq] {
    min-width: 100px;
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.available[b-fl3xjjo0gq] {
    background-color: lightgreen;
    cursor: pointer;
}

.not-available[b-fl3xjjo0gq] {
    background-color: lightcoral;
}

.booked-by-me[b-fl3xjjo0gq] {
    cursor: pointer;
    background-color: paleturquoise
}

    .booked-by-me.selected[b-fl3xjjo0gq] {
        background-color: paleturquoise;
        border: 0.3rem solid turquoise;
    }

    .booked-by-me:hover[b-fl3xjjo0gq] {
        background-color: paleturquoise;
        border: 0.4rem solid turquoise;
    }

.past-day.day-square[b-fl3xjjo0gq] {
    background-color: lightgray;
}

.day-info[b-fl3xjjo0gq] {
    text-align: center;
}

.day-name[b-fl3xjjo0gq] {
    display: block;
}

.day-date[b-fl3xjjo0gq] {
    font-size: 1.5rem;
}

.selected-bookings-container[b-fl3xjjo0gq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
}

.btn-danger:hover[b-fl3xjjo0gq] {
    background-color: #c82333; /* Darker red color on hover */
}
/* _content/ParkMan/Components/ParkingAvailability.razor.rz.scp.css */
.week-container[b-8m8g9dhzat] {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: min(1%, 5px);
    gap: min(1%, 5px);
}
/* _content/ParkMan/Pages/ParkingSpacePage.razor.rz.scp.css */
.parking-space[b-z1r7c0d2xk] {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.selected[b-z1r7c0d2xk] {
    background-color: #007bff;
    color: white;
}

.available-dates[b-z1r7c0d2xk] {
    padding: 20px;
}

.date-list[b-z1r7c0d2xk] {
    display: flex;
    flex-direction: column; /* Change to column direction */
}

.date-entry[b-z1r7c0d2xk] {
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #ccc; /* Add border */
    border-radius: 5px; /* Add border radius */
}

.date-range[b-z1r7c0d2xk], .explanation[b-z1r7c0d2xk] {
    flex: 1;
    padding: 8px;
}

.remove-button[b-z1r7c0d2xk] {
    flex: 1;
    padding: 8px;
    margin-top: 23px;
}

@media (max-width: 768px) {
    .date-entry[b-z1r7c0d2xk] {
        flex-direction: column;
    }

    .remove-button[b-z1r7c0d2xk] {
    color:aquamarine;
        margin-top: 0px
    }
}

.page-title[b-z1r7c0d2xk] {
    text-align: center;
    margin-bottom: 20px;
}

.create-btn[b-z1r7c0d2xk] {
    margin-bottom: 20px;
    background-color: turquoise
}

.parking-spaces[b-z1r7c0d2xk] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.parking-space[b-z1r7c0d2xk] {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}



.expandable-title[b-z1r7c0d2xk] {
    display: flex;
    align-items: center;
}

    .parking-space.selected[b-z1r7c0d2xk] {
        background-color: #007bff;
        color: white;
    }

.expandable-section[b-z1r7c0d2xk] {
    cursor: pointer;
}

.expand-icon[b-z1r7c0d2xk] {
    float: left;
    transition: transform 0.3s;
}

.expanded[b-z1r7c0d2xk] {
    transform: rotate(90deg);
}

.collapsed[b-z1r7c0d2xk] {
    transform: rotate(0deg);
}
/* _content/ParkMan/Shared/MainLayout.razor.rz.scp.css */
.page[b-323h09fhzf] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-323h09fhzf] {
    flex: 1;
}

.sidebar[b-323h09fhzf] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-323h09fhzf] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-323h09fhzf]  a, .top-row .btn-link[b-323h09fhzf] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-323h09fhzf] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-323h09fhzf] {
        display: none;
    }

    .top-row.auth[b-323h09fhzf] {
        justify-content: space-between;
    }

    .top-row a[b-323h09fhzf], .top-row .btn-link[b-323h09fhzf] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-323h09fhzf] {
        flex-direction: row;
    }

    .sidebar[b-323h09fhzf] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-323h09fhzf] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-323h09fhzf], article[b-323h09fhzf] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/ParkMan/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-6nvwfhjjh7] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-6nvwfhjjh7] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-6nvwfhjjh7] {
    font-size: 1.1rem;
}

.oi[b-6nvwfhjjh7] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-6nvwfhjjh7] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-6nvwfhjjh7] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-6nvwfhjjh7] {
        padding-bottom: 1rem;
    }

    .nav-item[b-6nvwfhjjh7]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-6nvwfhjjh7]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-6nvwfhjjh7]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-6nvwfhjjh7] {
        display: none;
    }

    .collapse[b-6nvwfhjjh7] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-6nvwfhjjh7] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
