
/* Vertical Navigation Styling */
.vertical-nav {
    height: 80vh;
    background-color: #343a40;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

/* Navigation List Styling */
.vertical-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.vertical-nav li {
    width: 100%;
}

.vertical-nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.vertical-nav a .icon {
    margin-right: 10px;
    font-size: 20px;
}

.vertical-nav a:hover, 
.vertical-nav a.active {
    background-color: #159143;
    color: white !important;
}

/* Content Area */
.content {
    height: 80vh;
    background: #f8f9fa;
    overflow-y: auto;
}

.content h1 {
    margin-top: 0;
    color: #343a40;
}

.mymodal{
    display: flex;
    width: 100% !important;
    height: 100vh !important;
    position: absolute;
    z-index: 9999999;
    top: 0;
    position: fixed;
    justify-content: center;
    align-items: center;
    background-color: #343a4097;
}

.alert-banner {
    max-width: 500px;
    width: 100%;
    background-color: #ffcccb; /* Light red */
    border-left: 5px solid #ff6347; /* Tomato red */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-header h2 {
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.alert-header span {
    color: #ff6347;
    font-size: 16px;
    font-weight: 600;
}

.alert-body {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.working-hours {
    margin-top: 10px;
    font-size: 14px;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #eaeaea;
}

.working-hours li:last-child {
    border-bottom: none;
}

.highlight {
    color: #ff6347;
    font-weight: bold;
}

.card img{
    max-height: 140px !important;
}

@media only screen and (max-width: 420px){
    .vertical-nav {
        height: 60px;
        width: 100%;
        margin-top: 5%;
        background-color: #343a40;
        color: white;
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
    }

    .kitch{
        margin: 0 !important;
    }

    /* Navigation List Styling */
    .vertical-nav ul {
        list-style: none;
        display: flex;
        padding: 5px;
        justify-content: center;
        align-items: center;
        margin: 0;
        width: 100%;
    }

    .vertical-nav li {
        width: 100%;
    }

    .vertical-nav a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: white;
        padding: 10px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .vertical-nav a .icon {
        margin-right: 10px;
        font-size: 20px;
        display: none;
    }
}