/* General Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f9fc; /* Very light blue-grey for a fresh, clean background */
    color: #333; /* Default text color */
    line-height: 1.6;

    /* Background image properties - keeping as is, assuming 'spring.jpg' complements */
    background-image: url('spring.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #6a0572; /* Deep, rich Plum/Purple - striking and unique */
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25); /* Stronger, deeper shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

/* New CSS for the clickable header title */
.header-logo-link {
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

header h1 {
    margin: 0;
    font-size: 3.2em;
    color: #fff; /* White for header text */
    font-family: 'Dancing Script', cursive;
    /* Bevel/shadow effect for logo text */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), /* Stronger dark shadow */
    -2px -2px 4px rgba(255, 255, 255, 0.2); /* Brighter highlight for "cut-out" feel */
}

/* Navigation Menu */
nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav .nav-list li {
    margin-left: 25px;
}

nav .nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav .nav-list a:hover {
    color: #e0e0e0; /* Lighter white on hover */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

/* Main Content */
main {
    padding: 20px 0;
}

/* --- Added/Adjusted Styling for Main Content H2 Headings --- */
main h2 {
    font-size: 2.5em;
    color: #7b1fa2; /* A vibrant purple, slightly lighter than header */
    font-family: 'Dancing Script', cursive;
    margin-bottom: 30px;
    text-align: center;
}

/* --- New Rule: Consistent Paragraph Styling for Main Content --- */
main p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-listing {
    text-align: center;
}

.product-listing h2 {
    font-size: 2.5em;
    font-family: 'Dancing Script', cursive;
    color: #7b1fa2; /* Consistent vibrant purple */
    margin-bottom: 30px;
}

/* --- Sorting Options Styling (Buttons) --- */

.product-listing.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.sorting-filtering-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: flex-start;
    margin: 30px auto;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
    background-color: #efe8f5; /* Very light purple for the sorting bar background - still light but with character */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.filter-group label {
    font-weight: bold;
    color: #5a006c; /* Darker purple for labels */
    font-size: 1.1em;
    margin-bottom: 5px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.filter-button {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: 0.95em;
    cursor: pointer;
    transition: transform 0.1s ease;
    white-space: nowrap;
    flex-grow: 1;
    text-align: center;
    min-width: 80px;
    border-radius: 20px;
    box-sizing: border-box;
}

.filter-button:hover {
    transform: translateY(-1px);
}

.filter-button a {
    display: block;
    text-decoration: none;
    background-color: #ffffff; /* White background for inactive buttons */
    color: #7b1fa2; /* Vibrant purple for inactive text */
    border: 1px solid #d1c4e9; /* Light purple border */
    padding: 10px 15px;
    border-radius: 20px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* Subtle shadow for definition */
}

.filter-button a:hover {
    background-color: #f0f0f0; /* Slight grey on hover */
    border-color: #b39ddb; /* More vibrant border on hover */
    color: #5a006c; /* Darker purple on hover */
}

.filter-button.active a {
    background-color: #7b1fa2; /* Active state: vibrant purple background */
    color: #fff; /* White text for active state */
    border-color: #7b1fa2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25); /* Stronger shadow for active */
    font-weight: bold;
}

.filter-button.active a:hover {
    background-color: #5a006c; /* Darker purple on active hover */
    border-color: #5a006c;
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio (height equals width) */
    overflow: hidden;
    border-bottom: 1px solid #eee;
    background-color: #f0f0f0;
}

.product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 1.5em;
    color: #5a006c; /* Darker purple for product titles */
    margin: 15px 10px 5px;
    flex-grow: 1;
}

.product-card .price {
    font-size: 1.3em;
    color: #ff5252; /* Bright, clear red for prices - more striking */
    font-weight: bold;
    margin: 10px 10px 20px;
}

/* Individual Product Page */
.product-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    padding-top: 40px;
}

.product-detail .product-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.product-detail .product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail .product-info {
    flex: 2;
    min-width: 300px;
}

.product-detail h2 {
    font-size: 3.2em;
    font-family: 'Dancing Script', cursive;
    margin-top: 0;
    margin-bottom: 15px;
    color: #7b1fa2; /* Consistent vibrant purple */
}

.product-detail .price {
    font-size: 1.8em;
    color: #ff5252; /* Bright red for product detail price */
    font-weight: bold;
    margin-bottom: 25px;
}

.product-detail .description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.buy-button {
    display: inline-block;
    background-color: #4CAF50; /* A classic, strong green for buy button */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.buy-button:hover {
    background-color: #43a047; /* Darker green on hover */
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: #6a0572; /* Consistent with header background */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.25); /* Shadow for footer */
}

/* --- Admin Page Specific Styles --- */
.admin-controls {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.admin-controls a.button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #7b1fa2; /* Consistent with vibrant purple */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.admin-controls a.button:hover {
    background-color: #5a006c; /* Darker purple on hover */
}
.product-card .admin-category-control {
    margin-top: 15px;
    padding: 10px;
    background-color: #fefefe; /* Near white background for admin control */
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.admin-category-control label {
    flex-shrink: 0;
    margin-right: 5px;
    color: #5a006c; /* Dark purple for labels */
}
.admin-category-control select {
    padding: 8px 12px;
    border: 1px solid #ccc; /* Neutral border */
    border-radius: 5px;
    font-size: 0.9em;
    flex-grow: 1;
    box-sizing: border-box;
    min-width: 120px;
}
.update-message {
    margin-top: 5px;
    font-size: 0.85em;
    color: #555;
    text-align: center;
    width: 100%;
}
.update-message.success { color: #4CAF50; } /* Strong green for success */
.update-message.error { color: #FF5252; } /* Bright red for error */
.update-message.info { color: #2196F3; } /* Standard blue for info */

.admin-page {
    padding-top: 20px;
    text-align: center;
}

.admin-nav {
    margin-bottom: 20px;
    background-color: #efe8f5; /* Light purple background */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.admin-nav a {
    text-decoration: none;
    color: #7b1fa2; /* Vibrant purple for admin nav links */
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid #d1c4e9;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-nav a:hover {
    background-color: #7b1fa2;
    color: #fff;
}

.category-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.category-list li {
    background-color: #f7f9fc; /* Body background for category tags */
    border-radius: 25px;
    padding: 5px 15px;
    border: 1px solid #e0e0e0;
}

.category-list li a {
    text-decoration: none;
    color: #5a006c; /* Dark purple for category links */
    font-weight: bold;
    white-space: nowrap;
}

.category-list li a:hover {
    color: #3e004a; /* Even darker purple on hover */
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.product-table th, .product-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
    vertical-align: top;
}

.product-table th:nth-child(5),
.product-table td:nth-child(5) {
    width: 150px;
    min-width: 100px;
    text-align: center;
}

.product-table img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: contain;
    margin: 0 auto;
}

.product-table th {
    background-color: #6a0572; /* Consistent header color for table headers */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

.product-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.product-table tr:hover {
    background-color: #f1f1f1;
}

.product-table td a {
    color: #7b1fa2; /* Vibrant purple for links in table */
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-table td a:hover {
    color: #5a006c;
    text-decoration: underline;
}

/* Styling for the main guide title */
.guide-intro h1 {
    /* Styles for "Our Potted Plants Guide" */
    font-family: 'Dancing Script', cursive; /* Assuming this is your primary site font */
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
}
.guide-intro p {
    text-align: center;
    margin-bottom: 50px;
}


/* Styling for each individual guide entry (the image and text block) */
.guide-entry {
    display: flex; /* Use flexbox for side-by-side layout */
    align-items: flex-start; /* Aligns items to the top of the container */
    gap: 30px; /* Space between image and text */
    margin-bottom: 40px; /* Space between guide entries */
    padding: 20px;
    background-color: #fff; /* Example background */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
}

.guide-entry-image {
    flex: 0 0 300px; /* Fixed width for the image container, adjust as needed */
    max-width: 300px; /* Ensures it doesn't get too wide */
    /* If your images aren't all the same height, you might want to use object-fit */
}

.guide-entry-image img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes extra space below image */
    border-radius: 4px; /* Slightly rounded corners for the image */
}

.guide-entry-content {
    flex: 1; /* Takes up the remaining space */
}

/* Styling for the individual plant titles (e.g., "Bonsai Tree") */
.guide-entry-title {
    font-family: 'Dancing Script', cursive; /* Apply your handwriting font here */
    font-size: 2.2em; /* Adjust size */
    color: #555; /* Or your preferred color */
    text-align: center;
    margin-top: 60px; /* Space above each plant title */
    margin-bottom: 30px; /* Space below each plant title */
}

/* Styling for Meaning, Occasions, Care Instructions subheadings */
.guide-entry-content h3 {
    font-family: Arial, sans-serif; /* Or your preferred standard font for body text headings */
    font-size: 1.3em;
    color: #444;
    margin-top: 20px;
    margin-bottom: 5px;
}

/* Styling for the text paragraphs */
.guide-entry-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Styling for care instruction list */
.guide-entry-content ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
    margin-bottom: 20px;
}

.guide-entry-content ul li {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Styling for the "View..." link */
.guide-entry-content .view-link a {
    display: inline-block;
    background-color: #7a1d7a; /* Your brand color for buttons */
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.guide-entry-content .view-link a:hover {
    background-color: #5d155d;
}

/* Separator between guide entries */
.guide-entry-separator {
    border: none;
    border-top: 1px solid #eee;
    margin: 30px 0; /* More space to clearly separate entries */
    clear: both; /* Important if you use floats elsewhere */
}

/* Styling for the search input field, now correctly aligned and sized */
.search-bar input[type="search"] {
    flex-grow: 1; /* Allows input to take up available space */
    /* REMOVED: display: block; and height: 100%; which caused the issues */

    background-color: #ffffff; /* White background for inactive state */
    color: #7b1fa2; /* Vibrant purple for inactive text */
    border: 1px solid #d1c4e9; /* Light purple border */
    padding: 10px 15px; /* Matching padding from .filter-button a for height consistency */
    border-radius: 20px; /* Matching border-radius from .filter-button a */
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    box-sizing: border-box; /* Include padding and border in the element's total width/height */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* Subtle shadow */

    /* Ensure consistent height with the button */
    height: auto; /* Allow height to be determined by content + padding */
    line-height: normal; /* Reset line-height if necessary */
}

.search-bar input[type="search"]::placeholder {
    color: #888;
    opacity: 0.7;
}

.search-bar input[type="search"]:focus {
    background-color: #f0f0f0;
    border-color: #b39ddb;
    color: #5a006c;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 0 0 3px rgba(123, 31, 162, 0.2);
}

/* Styling for the search button, exactly mimicking an active .filter-button a */
.search-bar button[type="submit"] {
    display: inline-block;
    padding: 10px 15px; /* Matching padding from .filter-button a for height consistency */
    text-align: center;
    text-decoration: none;
    border-radius: 20px; /* Matching border-radius from .filter-button a */
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
    box-sizing: border-box;

    background-color: #7b1fa2; /* EXACT active state purple background */
    color: #fff; /* White text for active state */
    border: 1px solid #7b1fa2; /* Matching border for active state */
    box-shadow: 0 2px 8px rgba(0,0,0,0.25); /* Stronger shadow for active state */
    font-weight: bold; /* Bold font for active state */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95em;
}

.search-bar button[type="submit"]:hover {
    background-color: #5a006c;
    border-color: #5a006c;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Make the search-bar itself a flex container to hold input and button */
.search-bar {
    display: flex; /* THIS MAKES THEM HORIZONTAL */
    flex-wrap: wrap; /* Allows wrapping on smaller screens if content is too wide */
    gap: 8px; /* Space between input and button */
    width: 100%;
    max-width: 600px; /* Adjust as needed for overall width */
    justify-content: center; /* Center input and button horizontally */
    align-items: center; /* THIS VERTICALLY ALIGNS THEM AND HELPS WITH HEIGHT */
}

/* Add to your style.css */
.load-more-button {
    display: block; /* Make it a block element to center */
    margin: 40px auto; /* Center it and give some space */
    padding: 10px 15px;
    background-color: #7b1fa2; /* Vibrant purple, consistent with active filters */
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    min-width: 200px;
}

.load-more-button:hover {
    background-color: #5a006c; /* Darker purple on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .sorting-filtering-bar { /* The outer container for the search form */
        flex-direction: column; /* Stack container elements */
        gap: 10px; /* Reduce gap */
        padding: 15px; /* Adjust padding for smaller screens */
        align-items: center; /* Center items when stacked */
    }

    .filter-group { /* If filter-group is used as wrapper for search, it might need adjustments */
        width: 100%; /* Take full width */
        text-align: center; /* Center label */
    }

    .filter-options { /* If filter-options is used as wrapper for search, it might need adjustments */
        flex-direction: column; /* Stack items within filter-options */
        align-items: stretch; /* Stretch items to full width */
    }

    .search-bar { /* The form itself */
        flex-direction: column; /* Stack input and button vertically */
        align-items: stretch; /* Stretch them to full width */
        max-width: 90%; /* Adjust max-width for the inner search bar */
        margin: 0 auto; /* Center the search bar */
    }

    .search-bar input[type="search"] {
        margin-right: 0; /* Remove right margin when stacked */
        margin-bottom: 10px; /* Add space below input */
        max-width: 100%; /* Allow input to take full width */
    }

    .search-bar button[type="submit"] {
        width: 100%; /* Make button full width when stacked */
    }
}

/* Media queries for responsiveness (VERY IMPORTANT for sustainability) */
@media (max-width: 768px) {
    .guide-entry {
        flex-direction: column; /* Stack image and text on smaller screens */
        align-items: center; /* Center content when stacked */
    }

    .guide-entry-image {
        flex: none; /* Remove flex sizing */
        max-width: 80%; /* Allow image to take more width */
        margin-bottom: 20px;
    }

    .guide-entry-content {
        text-align: center; /* Center text when stacked */
    }

    .guide-entry-content ul {
        text-align: left; /* Keep list items left-aligned */
        margin-left: auto;
        margin-right: auto;
        max-width: 90%; /* Constrain list width if needed */
    }
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-right: 20px;
    }

    .header-logo-link {
        margin-bottom: 0;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        z-index: 1001;
    }

    nav .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #5b0461; /* Slightly darker shade for mobile menu background */
        padding: 15px 0;
        border-radius: 0 0 8px 8px;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav .nav-list.active {
        display: flex;
    }

    nav .nav-list li {
        margin: 10px 0;
    }

    /* Responsive table for smaller screens (e.g., mobile) */
    .product-table, .product-table thead, .product-table tbody, .product-table th, .product-table td, .product-table tr {
        display: block;
    }

    .product-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .product-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .product-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    .product-table td:last-child {
        border-bottom: none;
    }

    .product-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #7b1fa2; /* Vibrant purple for labels on mobile table */
    }

    .product-table td img {
        margin-left: auto;
        margin-right: auto;
    }

    .admin-nav {
        flex-direction: column;
        align-items: center;
    }

    .category-list {
        flex-direction: column;
        align-items: center;
    }
}

/* Media queries for existing admin controls on small screens */
@media (max-width: 600px) {
    .admin-controls {
        flex-direction: column;
        align-items: center;
    }
    .admin-controls a.button {
        width: 80%;
        text-align: center;
    }
    .product-table .admin-category-control {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        width: 100%;
        margin-top: 5px;
    }
    .product-table .admin-category-control label {
        margin-right: 0;
        text-align: center;
    }
    .product-table .category-select {
        width: 80%;
        min-width: unset;
    }
    .product-table .update-message {
        text-align: center;
        width: 100%;
        margin-top: 5px;
    }
}
