body {
    font-family: 'sans-serif';
    --font-weight-body: 400;

}

.color-red {
    color: red;
}

table th,
table td {
    white-space: nowrap;
    /* Prevent text wrapping */
    text-overflow: ellipsis;
    /* Add ellipsis if content is too long */
    overflow: hidden;
}

table th {
    background-color: #073A3E !important;
    color: white !important;
}

.highlight-bar {
    border-left: 4px solid #073A3E;
    padding-left: 15px;
    max-width: 80%;
}

table td {
    max-width: 150px;
    /* Optional: limit column width for readability */
}

.flex-class {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* .great-vibes-regular {
    font-family: "Great Vibes", serif !important;
    font-weight: 400!important;
    font-style: normal!important;
} */
.green-text {
    color: #073A3E;

}

.btn-primary {
    background-color: #073A3E;
    border: 1px solid #073A3E !important;
    --bs-btn-active-bg: #073A3E !important;
}

.btn-primary:hover {
    background-color: #073A3E;
    --bs-btn-active-bg: #073A3E !important;
}

.btn-outline-primary {
    border: 1px solid #073A3E !important;
    color: #073A3E !important;
    --bs-btn-active-bg: #073A3E !important;

}

.btn-outline-primary:hover {
    background-color: #073A3E;
    color: white !important;
    --bs-btn-active-bg: #073A3E !important;
}

.green-bg {
    background-color: #073A3E;
    color: white;
}

.product-name {
    font-size: 3rem;
    /* Default font size for md screens (or larger) */
}

/* Font size for screens below md */
@media (max-width: 767.98px) {
    .product-name {
        font-size: 1.5rem;
        /* fs-1 equivalent */
    }
}

.green-outline-btn {
    border-color: #083b3f;
    color: #073A3E;
    background-color: transparent;
    /* Ensure no background initially */
    padding: 10px 20px;
    /* Add padding for better button appearance if needed */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition */
}

.green-btn {
    background-color: #083b3f;
    color: white;
    padding: 10px 20px;
    /* Add padding for better button appearance if needed */

}

.green-btn:hover {
    background-color: #083b3f;
    color: white;
    padding: 10px 20px;
    /* Add padding for better button appearance if needed */
    transition: transform 0.3s ease, background-color 0.3s, color 0.3s;
    /* Smooth transition */
    transform: scale(1.05);
    /* Slightly increase the size */
}

.green-outline-btn:hover {
    background-color: #083b3f;
    /* Match the border color */
    color: #FFFFFF;
    /* Text color becomes white */
    transition: transform 0.3s ease, background-color 0.3s, color 0.3s;
    /* Smooth transition */
    transform: scale(1.05);
    /* Slightly increase the size */

}

.video-frame {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    display: block;
    border: none;
}

@media (max-width: 768px) {
    .video-frame {
        height: 100%;
        max-height: 70vh;
    }
}

.banner-image {
    width: 100%;

    object-fit: cover;
    /* Ensures the image covers the container without distortion */
    display: block;
    /* Removes inline spacing for proper alignment */
}


.red-dot-container {
    position: relative;
    display: inline-block;
}

.red-dot-container::after {
    content: '';
    position: absolute;
    bottom: -5px;
    /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    /* Size of the dot */
    height: 6px;
    background-color: red;
    border-radius: 50%;
}

.carousel-item {
    text-align: center;
}

.review-img {
    width: 50px;
    height: 50px;

}

.review-name {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    margin-top: 10px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-check-label {
    font-weight: 500;
}

.form-check-input:checked {
    background-color: #073A3E;
    border-color: #073A3E;
}

#address-details {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

/* Apply white color to the accordion header text */
.accordion-button {
    background-color: #073A3E;
    /* Background color */
    color: white;
    /* Text color */
    border-color: #073A3E;
    /* Border color to match the background */
}

/* Remove the active state color */
.accordion-button:not(.collapsed) {
    background-color: #073A3E;
    color: white;
    border-color: #073A3E;
}

/* Remove focus outline and background color */
.accordion-button:focus {
    outline: none;
    box-shadow: none;
    background-color: #073A3E;
    /* Keep the background unchanged */
    color: white;
    /* Keep the text color unchanged */
}

/* Add a custom hover effect */
.accordion-button:hover {
    background-color: #055050;
    /* Darken on hover */
    border-color: #055050;
    /* Match the darkened hover state */
}

/* Change the icon color to white */
.accordion-button::after {
    color: white !important;
    /* Ensure icon color is white */
}

.accordion-button:focus::after,
.accordion-button.active::after {
    color: white !important;
    /* Ensure icon color remains white on focus and active */
}


/* Add responsiveness for mobile and tablet views */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        /* Adjust font size for accordion buttons on mobile */
    }
}