/* Modern Sidebar Design */

.sidebar {
    background: white;
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 2px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.sidebar-head {
    font-size: 22px;
    font-weight: 700;
    color: #143D60;
    box-shadow: rgba(20, 61, 96, 0.4) 5px 5px, rgba(20, 61, 96, 0.3) 10px 10px, rgba(20, 61, 96, 0.2) 15px 15px, rgba(20, 61, 96, 0.1) 20px 20px, rgba(20, 61, 96, 0.05) 25px 25px;
    border: 1px solid #143D60;
    border-radius: 30px;
    text-transform: uppercase;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    font-size: 18px;
    font-weight: 600;
    color: #143D60;
    padding: 12px 15px;
    margin: 8px 0;
    border-radius: 10px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.sidebar-menu li span {
    font-size: 20px;
}

.sidebar-menu li:hover {
    background: #143D60;
    transform: translateX(5px);
    color: white;
}

.delivery-section {
    max-width: 800px;
    background: white;
    /* padding: 20px; */
    margin: auto;
    border-radius: 8px;
    text-align: left;
}

.delivery-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #143D60;
    text-transform: uppercase;
}

.delivery-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.delivery-table th,
.delivery-table td {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    text-align: center;
}

.delivery-table th {
    background-color: #143D60;
    color: white;
    text-transform: uppercase;
}

.delivery-info {
    font-size: 16px;
    margin-top: 15px;
    text-align: justify;
}


/* specifcation-table */

.spec-table {
    width: 100%;
    margin: auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
}

.spec-table th,
.spec-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid black;
  /*  font-size: 14px;*/
}

.spec-table th {
    background-color: #143D60;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-table tr:last-child td {
    border-bottom: 2px solid black;
}

.spec-table td {
    font-weight:600;
	padding: 5px;
    border-bottom: 1px solid black;
    font-size: 14px;
}

.spec-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}


/* speicition-table */


/* .nutrition-facts table */

.nutrition-facts {
    width: 100%;
    background: white;
    padding: 15px;
    border: 2px solid black;
    text-align: left;
    margin: auto;
}

.nutrition-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    border-bottom: 8px solid black;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.nutrition-subtitle {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table td {
    padding: 5px;
    border-bottom: 1px solid black;
    font-size: 14px;
}

.bold {
    font-weight: bold;
}

.nutrition-footer {
    font-size: 12px;
    margin-top: 10px;
    border-top: 2px solid black;
    padding-top: 5px;
}


/* table */

.nb-title-menu {
    background-color: #f5f5f5;
    width: 100%;
    display: flex;
    align-items: center;
    /* Ensures vertical alignment */
}

.nb-label {
    background-color: #143D60;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 200px;
}

.h1,
.h2 {
    font-size: 20px; text-align:justify !important;
}

.title {
    color: #143D60;
    font-weight: 900;
    font-size: 25px;
    margin: 0;
}

.dash {
    border-bottom: 2px solid #143D60;
    width: 40%;
    margin: 10px 0 10px 0;
}

.nb-button-section {
    display: flex;
    justify-content: space-around;
}

.nb-btn {
    border: 2px dotted #143D60 !important;
    box-shadow: rgba(20, 61, 96, 0.4) 5px 5px, rgba(20, 61, 96, 0.3) 10px 10px, rgba(20, 61, 96, 0.2) 15px 15px, rgba(20, 61, 96, 0.1) 20px 20px, rgba(20, 61, 96, 0.05) 25px 25px;
    background-color: transparent;
    width: auto;
    border-radius: 10px;
    padding: 5px 20px 5px 20px;
    font-weight: 600;
    font-size: 18px;
}

.nb-btn:hover {
    background-color: #143D60;
    color: whitesmoke;
}

.content-section {
    color: #333;
}

.section-heading {
    font-size: 24px;
    font-weight: bold;
    color: #143D60;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

.section-paragraph {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.bold-content {
    font-weight: bold;
}

.section-list {
    list-style-type: disc !important;
    margin-left: 20px;
    margin-top: 10px;
}

.section-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    list-style-type: disc;
    text-align: justify;
}

.section-list li::marker {
    color: #143D60;
    /* Square bullet color */
}


/* Style the image inside the li span */

.sidebar-menu li span img {
    width: 22px;
}


/* Hover effect on the li element */

.sidebar-menu li:hover {
    background-color: #143D60;
}

.sidebar-menu li:hover a {
    color: whitesmoke;
    /* Text color change to whitesmoke when hovering over li */
}


/* Normal state for anchor tags */

.sidebar-menu li a {
    text-decoration: none;
    font-weight: 600;
    color: #143D60;
    /* Default color */
}


/* Active state for the li element */

.sidebar-menu li.active {
    background-color: #143D60;
    color: whitesmoke;
    /* Text color change for active li */
}

.sidebar-menu li.active a {
    text-decoration: none;
    color: white;
    /* Text color inside active anchor */
    font-weight: 600;
}

@media (max-width:990px) {
    .nb-btn {
        border: 2px dotted #143D60 !important;
        background-color: transparent;
        width: 45%;
        border-radius: 10px;
        padding: 5px 20px 5px 20px;
        font-weight: 600;
        font-size: 18px;
        margin-top: 10px;
    }
}