﻿
@font-face {
    font-family: 'Vividly';
    src: url('/Content/Font/Vividly-Regular.otf') format('opentype');
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    min-height: 100vh;
}

/* Make main fill remaining space */
main {
    flex-grow: 1; /* Expands to fill available space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh; /* Ensures it takes full screen height */
    flex-wrap: wrap;
    gap: 20px;
}


/* Floating Button Styles */
.scroll-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    background-color: white;
    color: #f89b31;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    width: 50px; /* Set fixed width */
    height: 50px; /* Set fixed height */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

    /* Hover effect */
    .scroll-to-top:hover {
        background-color: #f89b31;
        color: white;
    }

    /* Make the button hidden by default when at the top */
    .scroll-to-top.hidden {
        display: none;
    }


/* Announcement Section */
#announcement-section {
    text-align: center;
    color: orange;
    margin-top: auto;
}

    #announcement-section h2 {
        color: orange;
        font-family: "vividly-regular";
        margin-top: 7rem;
        font-size: 5rem;
    }

    #announcement-section p {
        color: orange;
    }

    #announcement-section img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 10px auto;
        object-fit: contain;
    }

#announcement-content {
    position: absolute;
    bottom: 10%;
    left: 43%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    color: white;
    z-index: 10;
}

    #announcement-content h2 {
        font-size: 3.5rem;
        font-family: "vividly-regular";
        color: orange;
        margin-bottom: 10px;
        line-height: 10px;
    }

    #announcement-content p {
        font-size: 1.2rem;
        color: white;
        line-height: 1.5;
        font-family: "Karla", sans-serif;
    }

/* Fade Overlay */
#announcement-fade-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 5;
}

/* Centering the Announcement Carousel */
#announcement-carousel-container {
    position: relative;
    width: 90%;
    max-width: 1080px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    bottom: 15px;
}

/* Image Container */
#announcement-carousel {
    width: 100%;
    aspect-ratio: 16 / 7;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #eee;
}

/* Carousel Track */
#announcement-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Images */
.announcement-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

    /* Show only the active image */
    .announcement-slide.active {
        opacity: 1;
    }

    /* Ensure Images Occupy Full Width */
    .announcement-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

/* Arrows */
.announcement-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    z-index: 10;
}

    /* Arrow Icon */
    .announcement-arrow i {
        font-size: 1.2rem;
        position: relative;
        top: 0px;
        left: 0px;
    }

    /* On Hover - Show Background & Slightly Scale */
    .announcement-arrow:hover {
        background-color: rgba(0, 0, 0, 0.6);
    }

        .announcement-arrow:hover i {
            opacity: 1;
        }

    /* Arrow Positions */
    .announcement-arrow.left {
        left: 15px;
    }

    .announcement-arrow.right {
        right: 15px;
    }

/* Dots */
#announcement-dots {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.announcement-dot {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: gray;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

    .announcement-dot.active {
        opacity: 1;
        background: white;
    }

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    #announcement-content h2 {
        font-size: 2rem;
    }

    #announcement-content p {
        font-size: 1rem;
    }

    #announcement-fade-overlay {
        height: 50%;
    }

    #announcement-dots {
        bottom: 7%;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    #announcement-content h2 {
        font-size: 1.8rem;
    }

    #announcement-content p {
        font-size: 0.9rem;
    }

    #announcement-fade-overlay {
        height: 60%;
    }

    #announcement-dots {
        bottom: 10%;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
}

/* Responsive Styles */
#announcement-carousel .card {
    height: auto;
}

#announcement-section img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/*---------------------------------------FEATURED PRODUCT-------------------------------------*/

/* FEATURED PRODUCT SECTION */



.featured-product {
    width: 90%;
    max-width: 1200px;
    margin-top: 80px;
    text-align: center;
    background-color: #f6f7d8;
    border-radius: 20px;
    padding: 2rem;
    padding-bottom: 3.5rem;
}

    .featured-product h2 {
        color: orange;
        font-family: "vividly-regular";
        font-size: 5rem; /* Adjusted for better responsiveness */
        line-height: normal;
        margin-bottom: 20px;
    }

/* Layout: Side-by-Side on Large Screens */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

/* Product Image */
.product-image {
    flex: 1;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

    .product-image img {
        width: auto;
        height: auto;
        max-height: 400px;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    }

/* Product Info */
.product-info {
    flex: 1;
    max-width: 200px;
    text-align: left;
}

/* Product Title */
.product-title {
    font-size: 3rem;
    color: #f9af5a;
    font-family: "vividly-regular";
    margin-bottom: 0px;
    padding-bottom: 0px;
    line-height: 2rem;
}

/* Description */
.description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    font-family: "Karla", sans-serif;
}

/* Shop Button */
.shop-button {
    background-color: #29b6f6;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    font-family: "Karla", sans-serif;
    transition: 0.3s;
    display: inline-block;
}

    .shop-button:hover {
        background-color: #0288d1;
    }

/* View More */
.view-more {
    margin-top: 10px;
    font-family: "Karla", sans-serif;
    margin-bottom: 0;
}

    .view-more a {
        text-decoration: none;
        color: #f57c00;
        font-size: 1rem;
        font-weight: bold;
    }

        .view-more a span {
            font-size: 1rem;
            color: #29b6f6;
        }

/* -----------------------------------
   RESPONSIVE DESIGN 
--------------------------------------*/

/* Tablets & Small Laptops */
@media screen and (max-width: 1024px) {
    .content {
        flex-direction: column; /* Stack items */
        text-align: center;
    }

    .product-image {
        max-width: 90%;
    }

    .product-info {
        width: 90%;
        text-align: center;
    }

    .product-title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .shop-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .view-more a {
        font-size: 1rem;
    }
}

/* Mobile Phones */
@media screen and (max-width: 600px) {
    .featured-product h2 {
        font-size: 2rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-info {
        padding: 10px;
    }

    .description {
        font-size: 0.9rem;
    }

    .shop-button {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .view-more a {
        font-size: 0.9rem;
    }
}

/* Extra Small Screens */
@media screen and (max-width: 400px) {
    .featured-product h2 {
        font-size: 1.8rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.85rem;
    }

    .shop-button {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .view-more a {
        font-size: 0.85rem;
    }
}



/* EVENTS SECTION */

/* EVENTS TITLE */
.events {
    font-size: 5rem;
    color: orange;
    font-family: "vividly-regular";
    margin-top: 50px;
    text-align: center;
}

/* CATEGORY TEXT (UPDATES DYNAMICALLY) */
#eventCategory {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/* CAROUSEL CONTAINER */
#eventCarouselContainer {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

/* GRID INSIDE CAROUSEL SLIDE */
#eventCarousel .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Flexible column layout */
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 100%;
    max-width: 11000px;
}

/* INDIVIDUAL IMAGE CONTAINER */
#eventCarousel .grid-item {
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 5px;
    transition: transform 0.3s ease-in-out;
}


/* IMAGE STYLING */
#eventCarousel .event-image {
    width: 100%;
    height: 200px; /* Increase this value */
    object-fit: cover;
    border-radius: 8px;
}


/* EVENT OVERLAY (NAME & DESCRIPTION) */
#eventCarousel .event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

#eventCarousel .grid-item:hover .event-overlay {
    opacity: 1;
}

/* EVENT TITLE */
#eventCarousel .event-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

/* EVENT DESCRIPTION */
#eventCarousel .event-desc {
    font-size: 1rem;
    margin: 0;
}

/* CAROUSEL ARROWS (MATCH ANNOUNCEMENT BUTTONS) */
#prevEvent, #nextEvent {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6); /* Matches Announcement */
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    z-index: 10;
}

    /* Arrow Icon */
    #prevEvent i, #nextEvent i {
        font-size: 1.2rem;
        position: relative;
    }

    /* On Hover - Show Background & Slightly Scale */
    #prevEvent:hover, #nextEvent:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

#prevEvent {
    left: -1.5rem;
    z-index: 10;
}

#nextEvent {
    right: -1.5rem;
    z-index: 10;
}

/* Dots */
#eventCarousel .dots {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

#eventCarousel .dot {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: gray;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

    #eventCarousel .dot.active {
        opacity: 1;
        background: white;
    }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    #eventCarousel .grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr)); /* Ensures two columns on small screens */
    }

    #eventCarousel .event-title {
        font-size: 1.2rem;
    }

    #eventCarousel .event-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #eventCarousel .grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Keeps multiple images */
    }

    #eventCarousel .event-image {
        height: 180px;
    }

    #eventCarousel .event-overlay h2 {
        font-size: 1.2rem;
    }

    #eventCarousel .event-overlay p {
        font-size: 0.85rem;
    }
}




/* Tutorials */
.tutorials {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.tutorial {
    font-size: 5rem;
    color: orange;
    font-family: "vividly-regular";
    margin-top: 50px;
}

.tutorial-desc {
    font-family: "Karla";
}

.tutorials_grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.tutorials_grid-item {
    position: relative;
    width: 100%;
    min-height: 200px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    padding: 30px;
    cursor: pointer;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

    .tutorials_grid-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }

    .tutorials_grid-item:hover {
        opacity: 0.9;
    }

.tutorial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
}

.step-title {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

.tutorial-overlay p {
    font-size: 1rem;
}

/* Fullscreen Modal */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1000;
    overflow: auto; /* Allows scrolling if content overflows */
}

.fullscreen-content {
    position: relative;
    width: 100%;
    max-height: 100vh; /* Limits the height of the image to 70% of the screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevents overflow */
}

    .fullscreen-content img {
        width: 80%;
        max-height: 70vh;
        object-fit: contain;
    }

.fullscreen-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
}

.fullscreen-desc {
    font-size: 1.2rem;
    color: white;
    margin-top: 10px;
    text-align: center;
    padding: 0 20px;
}

.close-fullscreen {
    position: absolute;
    top: 6rem;
    right: 13rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}




.red {
    background-color: #e57373;
}

.orange {
    background-color: #ffb74d;
}

.teal {
    background-color: #4dd0e1;
}

.yellow {
    background-color: #dce775;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tutorials_grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tutorials_grid-item {
        font-size: 16px;
        padding: 20px;
    }

    .step-title {
        font-size: 18px;
    }
}



.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    font-size: 2rem;
    gap: 5px;
}

    .rating input {
        display: none;
    }

    .rating label {
        color: #ccc;
        cursor: pointer;
        transition: color 0.3s ease;
    }

        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: gold;
        }

.btn-group .btn {
    width: 150px;
}

    .btn-group .btn.active {
        background-color: #007bff;
        color: white;
    }




/* ABOUT US */


.about-section {
    max-width: 600px;
    font-family: "Karla", sans-serif;
    text-align: justify;
}

    .about-section h2 {
        font-family: "vividly-regular";
        font-size: 3rem;
        color: #f89b31;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-section p {
        font-size: 1.2rem;
        color: #444;
        line-height: 1.5;
        margin-bottom: 15px;
        text-align: justify;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

    .social-icons a {
        display: flex;
        align-items: center;
        font-size: 1.1rem;
        color: #f89b31;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: #d87f26;
        }

    .social-icons i {
        margin-right: 8px;
        font-size: 1.3rem;
    }

/* Banner with navbar space */
.banner {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Adjust this value to match your navbar height */
    box-sizing: border-box;
    position: relative;
}

    .banner img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: cover;
        display: block;
    }


/* Individual review card */
.approved-review-card {
    border-radius: 25px;
    border: 10px solid transparent; /* Default border for consistency */
    background: #fff; /* Clean white background */
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    /* Pink border */
    .approved-review-card:nth-child(4n+1) {
        border-color: #f2868a;
        color: #6C3E4E;
    }

    /* Teal border */
    .approved-review-card:nth-child(4n+2) {
        border-color: #61cccd;
        color: #704214;
    }

    /* Orange border */
    .approved-review-card:nth-child(4n+3) {
        border-color: #f9af5a;
        color: #2a6771;
    }

    /* Green border */
    .approved-review-card:nth-child(4n) {
        border-color: #d9de65;
        color: #6D6A2F; /* fixed typo where color matched background */
    }

    /* Ensure text visibility */
    .approved-review-card h5,
    .approved-review-card p {
        color: inherit;
        font-family: 'Karla';
    }



.reviews {
    width: 90%;
    max-width: 1080px;
    font-family: 'Karla'
}

    .reviews h2 {
        text-align: center;
        font-size: 5rem;
        color: orange;
        font-family: "vividly-regular";
        margin-top: 50px;
    }

/* NEW REVIEWS */
.reviews-section, .approved-reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Karla';
}

.review-login-warning {
    background-color: #ffe4e1;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.open-review-form-btn, .submit-review-btn, .save-edit-review-btn, .review-login-btn {
    background-color: #ff8800;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
}

.review-form-container, .approved-reviews-container {
    margin-top: 15px;
}

.review-profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
/* Container for the approved reviews */

.approved-reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 2500px;
    margin: 0 auto;
}

.approved-review-images:empty {
    display: none;
}

/* Individual review card */
.approved-review-card {
    border-radius: 25px;
    border: 10px solid transparent; /* Default border for consistency */
    background: #fff; /* Clean white background */
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    /* Pink border */
    .approved-review-card:nth-child(4n+1) {
        border-color: #f2868a;
        color: #6C3E4E;
    }

    /* Teal border */
    .approved-review-card:nth-child(4n+2) {
        border-color: #61cccd;
        color: #704214;
    }

    /* Orange border */
    .approved-review-card:nth-child(4n+3) {
        border-color: #f9af5a;
        color: #2a6771;
    }

    /* Green border */
    .approved-review-card:nth-child(4n) {
        border-color: #d9de65;
        color: #6D6A2F; /* fixed typo where color matched background */
    }

    /* Ensure text visibility */
    .approved-review-card h5,
    .approved-review-card p {
        color: inherit;
        font-family: 'Karla';
    }



.reviews {
    width: 90%;
    max-width: 1080px;
    font-family: 'Karla'
}

    .reviews h2 {
        text-align: center;
        font-size: 5rem;
        color: orange;
        font-family: "vividly-regular";
        margin-top: 50px;
    }

.reviews-section, .approved-reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.review-login-warning {
    background-color: #ffe4e1;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.open-review-form-btn, .submit-review-btn, .save-edit-review-btn, .review-login-btn {
    background-color: #ff8800;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
}

.review-form-container, .approved-reviews-container {
    margin-top: 15px;
}

/* Profile picture */
.review-profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Reviewer info section */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Reviewer name */
.review-user-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

/* Review text */
.approved-review-text {
    color: #555;
    font-size: 14px;
    margin: 10px 0;
}

/* Review image container */
.approved-review-images {
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Review image styling */
.approved-review-img {
    width: 100%;
    height: 220px; /* Increased height for better visibility */
    object-fit: cover;
    border-radius: 12px; /* Slightly increased border radius for smoother edges */
    margin-top: 10px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .approved-review-img {
        height: 180px; /* Slightly reduced height for smaller screens */
    }
}



/* Review options (dots menu) */
.review-user-options {
    position: absolute;
    top: 10px;
    right: 10px;
}

.review-options-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.review-options-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px;
    list-style: none;
}

.review-user-options:hover .review-options-menu {
    display: block;
}

.review-options-menu button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    text-align: left;
}

    .review-options-menu button:hover {
        background: #f2f2f2;
    }

/* Responsive adjustments */
@media (max-width: 900px) {
    .approved-reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .approved-reviews-container {
        grid-template-columns: 1fr;
    }
}


/*REVIEW INPUT FORM*/
/* Edit Review Modal Overlay */
/* Main Card Layout */

#profileImage {
    object-fit: cover;
    width: 140px;
    height: 140px;
}






