/* Custom Components - Converted to Standard CSS */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #0f172a;
    /* slate-900 */
    background-color: #34d399;
    /* emerald-400 */
    transition: all 0.15s ease-in-out;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #10b981;
    /* emerald-500 */
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.7);
}

@media (min-width: 768px) {
    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1.125rem;
    }
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: 1px solid #64748b;
    /* slate-500 */
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #e2e8f0;
    /* slate-200 */
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1e293b;
    /* slate-800 */
}

@media (min-width: 768px) {
    .btn-secondary {
        padding: 1rem 2.5rem;
        font-size: 1.125rem;
    }
}

.btn-submit {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background-color: #059669;
    /* emerald-600 */
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #047857;
    /* emerald-700 */
}

.btn-submit:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #10b981;
    /* ring-emerald-500 */
}

.form-input {
    appearance: none;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e1;
    /* slate-300 */
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
}

.form-input::placeholder {
    color: #94a3b8;
    /* slate-400 */
}

.form-input:focus {
    outline: none;
    border-color: #10b981;
    /* emerald-500 */
    box-shadow: 0 0 0 1px #10b981;
    /* ring-emerald-500 */
}

.btn-action {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: white;
    background-color: #059669;
    /* emerald-600 */
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
}

.btn-action:hover {
    background-color: #047857;
    /* emerald-700 */
}

.btn-action:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #10b981;
    /* ring-emerald-500 */
}

.btn-white {
    background-color: white;
    padding: 0.5rem 1rem;
    border: 1px solid #cbd5e1;
    /* slate-300 */
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    /* slate-700 */
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
}

.btn-white:hover {
    background-color: #f8fafc;
    /* slate-50 */
}

.btn-white:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #10b981;
    /* ring-emerald-500 */
}

.btn-danger {
    display: inline-flex;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: white;
    background-color: #dc2626;
    /* red-600 */
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
}

.btn-danger:hover {
    background-color: #b91c1c;
    /* red-700 */
}

.btn-danger:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #ef4444;
    /* ring-red-500 */
}

.btn-neutral {
    background-color: #e2e8f0;
    /* slate-200 */
    color: #334155;
    /* slate-700 */
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
}

.btn-neutral:hover {
    background-color: #cbd5e1;
    /* slate-300 */
}

.btn-neutral:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #64748b;
    /* ring-slate-500 */
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-blue {
    background-color: #dbeafe;
    /* blue-100 */
    color: #1e40af;
    /* blue-800 */
}

.badge-purple {
    background-color: #f3e8ff;
    /* purple-100 */
    color: #6b21a8;
    /* purple-800 */
}

.nav-link {
    color: #cbd5e1;
    /* gray-300 */
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
    text-decoration: none;
}

.nav-link:hover {
    color: white;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: #d1d5db;
    /* gray-300 */
    transition: all 0.15s ease-in-out;
}

.mobile-nav-link:hover {
    color: white;
    background-color: #374151;
    /* gray-700 */
}

.btn-glow {
    background-color: #10b981;
    /* emerald-500 */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background-color 0.15s ease-in-out;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.btn-glow:hover {
    background-color: #059669;
    /* emerald-600 */
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    /* slate-200 */
}

.card-interactive {
    /* Inherits .card styles via usage */
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.15s ease-in-out;
}

.card-interactive:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-empty {
    /* Inherits .card styles via usage */
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    padding: 5rem 0;
}

.btn-wishlist {
    flex: 1;
    background-color: white;
    border: 1px solid #cbd5e1;
    /* slate-300 */
    border-radius: 0.375rem;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    /* slate-700 */
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
}

.btn-wishlist:hover {
    background-color: #f8fafc;
    /* slate-50 */
}

.btn-wishlist:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #10b981;
    /* ring-emerald-500 */
}

.btn-wishlist-active {
    flex: 1;
    background-color: #fef2f2;
    /* red-50 */
    border: 1px solid #fecaca;
    /* red-200 */
    border-radius: 0.375rem;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    color: #dc2626;
    /* red-600 */
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
}

.btn-wishlist-active:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #10b981;
    /* ring-emerald-500 */
}

/* Auth Page Components */
.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #f8fafc;
    /* slate-50 */
}

@media (min-width: 640px) {
    .auth-page-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .auth-page-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.auth-header {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 28rem;
    /* sm:max-w-md */
}

@media (min-width: 640px) {
    .auth-header {
        width: 100%;
    }
}

.auth-content-container {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 28rem;
    /* sm:max-w-md */
}

.auth-card {
    background-color: white;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
    .auth-card {
        border-radius: 0.5rem;
        /* rounded-lg */
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

/* Header & Footer Components */
.brand-logo {
    width: 2rem;
    height: 2rem;
    color: #34d399;
    /* emerald-400 */
}

.brand-text {
    font-weight: 700;
    font-size: 1.25rem;
    /* text-xl */
    letter-spacing: -0.025em;
    /* tracking-tight */
    color: white;
    text-decoration: none;
}

.brand-text:visited,
.brand-text:hover,
.brand-text:active {
    color: white;
}

.text-brand-highlight {
    color: #34d399;
    /* emerald-400 */
}

.auth-link-container {
    margin-top: 1.5rem;
    /* mt-6 */
    font-size: 0.875rem;
    /* text-sm */
    color: #94a3b8;
    /* slate-400 */
}

.avatar-sm {
    height: 2rem;
    /* h-8 */
    width: 2rem;
    /* w-8 */
    object-fit: contain;
}

.avatar-placeholder-sm {
    height: 2rem;
    /* h-8 */
    width: 2rem;
    /* w-8 */
    background-color: #e2e8f0;
    /* slate-200 */
    border-radius: 9999px;
    /* rounded-full */
}

.footer {
    background-color: #0f172a;
    /* slate-900 */
    color: #94a3b8;
    /* slate-400 */
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-copyright {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-copyright {
        margin-bottom: 0;
    }
}

.footer-copyright-text {
    font-size: 0.875rem;
    /* text-sm */
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    /* space-x-6 */
}

.footer-link {
    color: #94a3b8;
    /* slate-400 */
    transition: color 0.15s ease-in-out;
    text-decoration: none;
}

.footer-link:hover {
    color: white;
}

/* Page Helpers */
.page-title {
    font-size: 1.875rem;
    /* text-3xl */
    line-height: 2.25rem;
    font-weight: 800;
    /* font-extrabold */
    color: #0f172a;
    /* slate-900 */
    margin-bottom: 1.5rem;
    /* mb-6 */
}

@media (min-width: 640px) {
    .page-title {
        font-size: 2.25rem;
        /* sm:text-4xl */
        line-height: 2.5rem;
    }
}

.page-subtitle {
    margin-top: 0.5rem;
    color: #475569;
    /* slate-600 */
}

.page-title-large {
    font-size: 1.875rem;
    /* text-3xl */
    line-height: 2.25rem;
    color: #0f172a;
    /* slate-900 */
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* slate-500 */
    margin-top: 0.5rem;
}

.page-description {
    margin-top: 1rem;
    font-size: 1.125rem;
    /* text-lg */
    color: #64748b;
    /* slate-500 */
}

.page-footer-text {
    margin-top: 0.5rem;
    color: #64748b;
    /* slate-500 */
}

/* Mobile Nav Specifics */
.mobile-nav-link-admin {
    display: block;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: #34d399;
    /* emerald-400 */
    font-weight: 700;
    background-color: #111827;
    /* gray-900 */
    border-left: 4px solid #10b981;
    /* emerald-500 */
    text-decoration: none;
}

.mobile-nav-link-logout {
    display: block;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: #f87171;
    /* red-400 */
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.mobile-nav-link-logout:hover {
    color: #fca5a5;
    /* red-300 */
    background-color: #374151;
    /* gray-700 */
}

.mobile-menu-container {
    padding-left: 0.5rem;
    /* px-2 */
    padding-right: 0.5rem;
    padding-top: 0.5rem;
    /* pt-2 */
    padding-bottom: 0.75rem;
    /* pb-3 */
}

.mobile-menu-container>*+* {
    margin-top: 0.25rem;
    /* space-y-1 equivalent */
}

.mobile-nav-link-active {
    display: block;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: #111827;
    /* gray-900 */
    text-decoration: none;
}

.mobile-nav-link-highlight {
    display: block;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: #34d399;
    /* emerald-400 */
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.mobile-nav-link-highlight:hover {
    color: #6ee7b7;
    /* emerald-300 */
    background-color: #374151;
    /* gray-700 */
}

.mobile-nav-link-highlight:hover {
    color: #6ee7b7;
    /* emerald-300 */
    background-color: #374151;
    /* gray-700 */
}

.nav-link-admin-desktop {
    color: #34d399;
    /* emerald-400 */
    font-weight: 700;
    /* font-bold */
    border: 1px solid rgba(16, 185, 129, 0.5);
    /* border-emerald-500/50 */
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.nav-link-admin-desktop:hover {
    background-color: #1f2937;
    /* gray-800 */
    text-decoration: none;
}

.nav-user-greeting {
    font-size: 0.875rem;
    /* text-sm */
    color: #34d399;
    /* emerald-400 */
    font-weight: 600;
    /* font-semibold */
}

/* Landing Page Components */
.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0.4));
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.hero-text {
    margin-top: 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    color: #cbd5e1;
    /* slate-300 */
}

@media (min-width: 640px) {
    .hero-text {
        max-width: 48rem;
    }
}

.hero-buttons {
    margin-top: 2.5rem;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        max-width: none;
        flex-direction: row;
        justify-content: center;
    }
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .section-title-wrapper {
        text-align: left;
    }
}

.section-label {
    font-size: 1rem;
    color: #059669;
    /* emerald-600 */
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.section-heading {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    /* slate-900 */
}

@media (min-width: 640px) {
    .section-heading {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.featured-card {
    position: relative;
    background-color: #0f172a;
    /* slate-900 */
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-xl */
    overflow: hidden;
}

@media (min-width: 1024px) {
    .featured-card {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

.featured-img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.featured-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0f172a;
    /* slate-900 */
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.featured-content {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 640px) {
    .featured-content {
        padding-top: 4rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (min-width: 1024px) {
    .featured-content {
        padding-top: 4rem;
        padding-right: 0;
    }
}

@media (min-width: 1280px) {
    .featured-content {
        padding-top: 5rem;
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

/* Auth Components */
.auth-title {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1.875rem;
    /* text-3xl */
    line-height: 2.25rem;
    font-weight: 800;
    /* font-extrabold */
    color: #0f172a;
    /* slate-900 */
}

.auth-subtitle {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    /* text-sm */
    color: #475569;
    /* slate-600 */
}

/* Alerts */
.alert {
    margin-bottom: 1rem;
    padding: 1rem;
    border-left-width: 4px;
}

.alert-error {
    background-color: #fef2f2;
    /* red-50 */
    border-color: #f87171;
    /* red-400 */
    color: #b91c1c;
    /* red-700 */
}

.alert-success {
    background-color: #ecfdf5;
    /* green-50 */
    border-color: #34d399;
    /* green-400 */
    color: #047857;
    /* green-700 */
}

.alert-content {
    display: flex;
}

.alert-icon {
    flex-shrink: 0;
    height: 1.25rem;
    width: 1.25rem;
    margin-right: 0.75rem;
}

/* Icons */
.icon-sm {
    height: 1.25rem;
    /* h-5 */
    width: 1.25rem;
    /* w-5 */
}

.icon-md {
    height: 1.5rem;
    /* h-6 */
    width: 1.5rem;
    /* w-6 */
}

.icon-lg {
    height: 3rem;
    /* h-12 */
    width: 3rem;
    /* w-12 */
}

.icon-xl {
    height: 6rem;
    /* h-24 */
    width: 6rem;
    /* w-24 */
}

/* Navbar Components */
.app-body {
    background-color: #f8fafc;
    /* slate-50 */
    color: #0f172a;
    /* slate-900 */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.navbar {
    background-color: #0f172a;
    /* slate-900 */
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* shadow-lg */
}

.navbar-container {
    max-width: 80rem;
    /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .navbar-container {
        padding-left: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .navbar-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    height: 4rem;
    /* h-16 */
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.desktop-menu {
    display: none;
}

@media (min-width: 640px) {
    .desktop-menu {
        display: flex;
        align-items: center;
    }

    .desktop-menu>*+* {
        margin-left: 2rem;
        /* space-x-8 */
    }
}

.user-menu {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guest-menu {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-button-wrapper {
    margin-right: -0.5rem;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .mobile-menu-button-wrapper {
        display: none;
    }
}

.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: #9ca3af;
    /* gray-400 */
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    color: white;
    background-color: #374151;
    /* gray-700 */
}

/* Mobile Menu Wrapper (replaces sm:hidden) */
.mobile-menu-wrapper {
    display: block;
}

@media (min-width: 640px) {
    .mobile-menu-wrapper {
        display: none;
    }
}

.main-content {
    flex-grow: 1;
}

.upload-text-container {
    text-align: center;
}

.upload-text-container>*+* {
    margin-top: 0.25rem;
}

/* Specific Header Links */
.nav-item-login {
    color: white;
    font-weight: 500;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: color 0.15s ease-in-out;
    text-decoration: none;
}

.nav-item-login:hover {
    color: #34d399;
    /* emerald-400 */
}

/* Content Body (Prose Wrapper) */
.content-body {
    color: #334155;
    /* slate-700 */
    max-width: 65ch;
}

.content-body p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    line-height: 1.75;
}

/* Layout Containers & Sections */
.page-container {
    max-width: 80rem;
    /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .page-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .page-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.hero-section {
    position: relative;
    background-color: #0f172a;
    /* slate-900 backup */
    overflow: hidden;
    padding-bottom: 4rem;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-content {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.features-grid {
    position: relative;
    margin-top: 3rem;
    /* mt-12 */
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* gap-8 */
}

@media (min-width: 1024px) {
    .features-grid {
        margin-top: 6rem;
        /* lg:mt-24 */
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        /* lg:grid-cols-3 */
        gap: 2rem;
    }
}

.section-white {
    background-color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Feature Section Components */
.section-intro {
    position: relative;
    text-align: center;
}

.section-intro-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    /* slate-900 */
}

@media (min-width: 640px) {
    .section-intro-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.section-intro-text {
    margin-top: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.25rem;
    /* text-xl */
    color: #64748b;
    /* slate-500 */
}

.feature-card {
    background-color: #f8fafc;
    /* slate-50 */
    padding: 2rem;
    border-radius: 1rem;
    /* rounded-2xl */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.15s ease-in-out;
}

.feature-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    /* h-12 */
    width: 3rem;
    /* w-12 */
    border-radius: 0.375rem;
    /* rounded-md */
    background-color: #10b981;
    /* emerald-500 */
    color: white;
    flex-shrink: 0;
}

.feature-content {
    margin-top: 1.25rem;
    /* mt-5 */
}

.feature-title {
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.5rem;
    font-weight: 500;
    color: #0f172a;
    /* slate-900 */
}

.feature-text {
    margin-top: 0.5rem;
    /* mt-2 */
    font-size: 1rem;
    /* text-base */
    color: #64748b;
    /* slate-500 */
}

/* Table Components */
.table-container {
    overflow-x: auto;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.table {
    min-width: 100%;
    border-collapse: collapse;
}

.table-head {
    background-color: #f9fafb;
    /* gray-50 */
}

.table-header-cell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-align: left;
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 500;
    color: #6b7280;
    /* gray-500 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* tracking-wider */
}

.table-header-cell-right {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-align: right;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-body {
    background-color: white;
}

.table-body tr:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
    /* gray-200 */
}

.table-cell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    white-space: nowrap;
    font-size: 0.875rem;
    /* text-sm */
    color: #111827;
    /* gray-900 */
}

.table-cell-subtext {
    color: #6b7280;
    /* gray-500 */
}

.table-cell-right {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    white-space: nowrap;
    text-align: right;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Avatar Components */
.avatar-sm {
    height: 2rem;
    /* h-8 */
    width: 2rem;
    /* w-8 */
    border-radius: 9999px;
    object-fit: cover;
}

.avatar-md {
    height: 2.5rem;
    /* h-10 */
    width: 2.5rem;
    /* w-10 */
    border-radius: 9999px;
    object-fit: cover;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e8f0;
    /* slate-200 */
    color: #94a3b8;
    /* slate-400 */
    border-radius: 9999px;
}

.avatar-placeholder-sm {
    height: 2rem;
    width: 2rem;
}


/* List Group Components */
.list-group {
    display: flex;
    flex-direction: column;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 1rem 1.5rem;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    /* gray-200 */
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    background-color: #f9fafb;
    /* gray-50 */
}

/* Form Extras */
.form-input-disabled {
    background-color: #f8fafc;
    /* slate-50 */
    color: #64748b;
    /* slate-500 */
    cursor: not-allowed;
}

.form-checkbox {
    height: 1rem;
    /* h-4 */
    width: 1rem;
    /* w-4 */
    color: #059669;
    /* emerald-600 */
    border-color: #cbd5e1;
    /* slate-300 */
    border-radius: 0.25rem;
    cursor: pointer;
}

.form-checkbox:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #10b981;
    /* ring-emerald-500 */
}


/* Form Grid Components */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    /* gap-y-6 */
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
        /* gap-x-4 */
    }
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

@media (min-width: 640px) {
    .col-span-3 {
        grid-column: span 3 / span 3;
    }
}

.col-span-4 {
    grid-column: span 4 / span 4;
}

@media (min-width: 640px) {
    .col-span-4 {
        grid-column: span 4 / span 4;
    }
}

.col-span-6 {
    grid-column: span 1 / span 1;
}

@media (min-width: 640px) {
    .col-span-6 {
        grid-column: span 6 / span 6;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    /* space-y-6 equivalent usually handled by grid gap, but for standalone groups */
}

.form-group-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* space-y-6 */
}

.page-container-narrow {
    max-width: 42rem;
    /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .page-container-narrow {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .page-container-narrow {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}



/* Product/Page Layouts */
.product-layout {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .product-layout {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        /* gap-x-8 */
        align-items: start;
    }
}

.text-content {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #334155;
    /* slate-700 */
}

.text-content p {
    margin-bottom: 1.5rem;
    /* space-y-6 */
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Card Internals */
.card-image-container {
    width: 100%;
    height: 16rem;
    /* h-64 */
    background-color: #e2e8f0;
    /* slate-200 */
    overflow: hidden;
    position: relative;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    /* slate-100 */
    color: #94a3b8;
    /* slate-400 */
}

.card-badge-top-right {
    position: absolute;
    top: 0.5rem;
    /* top-2 */
    right: 0.5rem;
    /* right-2 */
}

/* Icons */
/* Icons */
.icon-xl {
    height: 6rem;
    /* h-24 */
    width: 6rem;
    /* w-24 */
}

.icon-lg {
    height: 3rem;
    /* h-12 */
    width: 3rem;
    /* w-12 */
}

.icon-md {
    height: 1.5rem;
    /* h-6 */
    width: 1.5rem;
    /* w-6 */
}

.icon-sm {
    height: 1.25rem;
    /* h-5 */
    width: 1.25rem;
    /* w-5 */
}

/* Branding */
.brand-logo {
    height: 2rem;
    /* h-8 */
    width: 2rem;
    /* w-8 */
    color: #10b981;
    /* emerald-500 */
}

.btn-icon-white {
    background-color: white;
    padding: 0.375rem;
    /* p-1.5 */
    border-radius: 9999px;
    /* rounded-full */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    /* shadow-sm */
    display: inline-flex;
}

/* Text Highlights */
.text-brand-highlight {
    color: #34d399;
    /* emerald-400 */
}

.auth-link-highlight {
    font-weight: 500;
    color: #34d399;
    /* emerald-400 */
    text-decoration: none;
}

.auth-link-highlight:hover {
    color: #6ee7b7;
    /* emerald-300 */
}

/* Profile Header */
.profile-header-container {
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    /* shadow */
}

.profile-header-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .profile-header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.profile-title-wrapper {
    flex: 1 1 0%;
    min-width: 0;
}

.profile-meta-list {
    margin-top: 0.25rem;
    /* mt-1 */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .profile-meta-list {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 0;
        gap: 1.5rem;
        /* space-x-6 (approx) */
    }
}

.profile-meta-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* slate-500 */
}

.profile-meta-icon {
    flex-shrink: 0;
    margin-right: 0.375rem;
    /* mr-1.5 */
    height: 1.25rem;
    /* h-5 */
    width: 1.25rem;
    /* w-5 */
    color: #94a3b8;
    /* slate-400 */
}

.error-container {
    max-width: 80rem;
    /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.error-text {
    color: #dc2626;
    /* red-600 */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.15s ease-in-out;
}

.card-interactive:hover .card-image {
    opacity: 0.75;
}

.card-content {
    padding: 1rem;
    /* p-4 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-title {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 500;
    color: #0f172a;
    /* slate-900 */
}

.card-title a {
    text-decoration: none;
    color: inherit;
}

.card-subtitle {
    margin-top: 0.25rem;
    /* mt-1 */
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* slate-500 */
}

.card-meta {
    margin-top: 0.5rem;
    /* mt-2 */
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* slate-500 */
    font-style: italic;
}

.card-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-link {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    color: #4f46e5;
    /* indigo-600 */
}

.card-link:hover {
    color: #4338ca;
    /* indigo-500 */
}

/* Featured Scarf Section */
.featured-overlay-text {
    align-self: center;
}

@media (min-width: 1024px) {
    .featured-overlay-text {
        align-self: center;
    }
}

.featured-title-large {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 800;
    /* font-extrabold */
    color: white;
}

@media (min-width: 640px) {
    .featured-title-large {
        font-size: 2.25rem;
        /* text-4xl */
    }
}

.featured-subtitle {
    display: block;
    margin-top: 0.5rem;
    /* mt-2 */
    color: #34d399;
    /* emerald-400 */
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 800;
}

.featured-description {
    margin-top: 1rem;
    /* mt-4 */
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.5rem;
    color: #cbd5e1;
    /* slate-300 */
}

.featured-actions {
    margin-top: 2rem;
    /* mt-8 */
    display: flex;
    gap: 1rem;
    /* gap-4 */
}

.btn-featured {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    /* px-5 py-3 */
    border: 1px solid transparent;
    font-size: 1rem;
    /* text-base */
    font-weight: 500;
    border-radius: 0.375rem;
    /* rounded-md */
    color: #0f172a;
    /* slate-900 */
    background-color: #34d399;
    /* emerald-400 */
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}

.btn-featured:hover {
    background-color: #10b981;
    /* emerald-500 */
}

.featured-collector {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    /* px-5 py-3 */
    font-size: 1rem;
    /* text-base */
    font-weight: 500;
    color: #cbd5e1;
    /* slate-300 */
}

/* File Upload Components */
.file-upload-zone {
    margin-top: 0.25rem;
    /* mt-1 */
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border: 2px dashed #cbd5e1;
    /* border-slate-300 */
    border-radius: 0.375rem;
    /* rounded-md */
}

.file-upload-icon {
    margin-left: auto;
    margin-right: auto;
    height: 3rem;
    /* h-12 */
    width: 3rem;
    /* w-12 */
    color: #94a3b8;
    /* slate-400 */
}

.file-upload-label-container {
    display: flex;
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* slate-600 */
}

.file-upload-label {
    position: relative;
    cursor: pointer;
    background-color: white;
    border-radius: 0.25rem;
    /* rounded-md */
    font-weight: 500;
    color: #4f46e5;
    /* indigo-600 */
}

.file-upload-label:hover {
    color: #4338ca;
    /* indigo-500 */
}

.file-upload-label:focus-within {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #4f46e5;
    /* ring-indigo-500 */
}

.file-upload-or-text {
    padding-left: 0.25rem;
    /* pl-1 */
}

.file-upload-help {
    font-size: 0.75rem;
    /* text-xs */
    color: #94a3b8;
    /* slate-500 */
}

/* Form Input Extras */
.form-input-wrapper {
    margin-top: 0.25rem;
    /* mt-1 */
    position: relative;
    border-radius: 0.375rem;
    /* rounded-md */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-input-icon-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    padding-left: 0.75rem;
    /* pl-3 */
    display: flex;
    align-items: center;
    pointer-events: none;
}

.form-input-icon-text {
    color: #64748b;
    /* slate-500 */
    font-size: 0.875rem;
    /* sm:text-sm */
}

.form-input-currency {
    padding-left: 1.75rem;
    /* pl-7 */
}

.form-label {
    display: block;
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    color: #374151;
    /* gray-700 */
}

.form-actions {
    padding-top: 1.25rem;
    /* pt-5 */
}

.form-actions-right {
    display: flex;
    justify-content: flex-end;
}

.btn-spacer {
    margin-left: 0.75rem;
    /* ml-3 */
}

/* Empty State */
.empty-state-container {
    margin-top: 1.5rem;
    /* mt-6 */
    text-align: center;
}

.empty-state-icon {
    margin-left: auto;
    margin-right: auto;
    height: 3rem;
    /* h-12 */
    width: 3rem;
    /* w-12 */
    color: #94a3b8;
    /* slate-400 */
}

.empty-state-title {
    margin-top: 0.5rem;
    /* mt-2 */
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    color: #0f172a;
    /* slate-900 */
}

.empty-state-text {
    margin-top: 0.25rem;
    /* mt-1 */
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* slate-500 */
}

/* Pagination & Table Links */
.link-action {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    color: #059669;
    /* emerald-600 */
    text-decoration: none;
}

.link-action:hover {
    color: #047857;
    /* emerald-700 */
}

.text-meta {
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* slate-500 */
}

.text-meta-small {
    font-size: 0.75rem;
    /* text-xs */
    color: #64748b;
    /* slate-500 */
}

.text-highlight {
    font-weight: 700;
    color: #0f172a;
    /* slate-900 */
}

.form-section-title {
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.5rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 1rem;
    /* mb-4 */
}

/* Admin Dashboard Components */
.stat-card {
    padding: 1.25rem;
    /* p-5 */
}

.stat-content {
    display: flex;
    align-items: center;
}

.stat-icon-wrapper {
    flex-shrink: 0;
    padding: 0.75rem;
    /* p-3 */
    border-radius: 0.375rem;
    /* rounded-md */
}

.stat-bg-emerald {
    background-color: #10b981;
    /* emerald-500 */
}

.stat-bg-blue {
    background-color: #3b82f6;
    /* blue-500 */
}

.stat-bg-purple {
    background-color: #8b5cf6;
    /* purple-500 */
}

.stat-bg-yellow {
    background-color: #f59e0b;
    /* yellow-500 */
}

.stat-icon {
    height: 1.5rem;
    /* h-6 */
    width: 1.5rem;
    /* w-6 */
    color: white;
}

.stat-text-container {
    margin-left: 1.25rem;
    /* ml-5 */
    width: 0;
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    color: #64748b;
    /* slate-500 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-value {
    display: flex;
    align-items: baseline;
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 600;
    color: #0f172a;
    /* slate-900 */
}

.admin-list-item {
    display: block;
    background-color: white;
    transition: background-color 0.15s ease-in-out;
    text-decoration: none;
}

.admin-list-item:hover {
    background-color: #f8fafc;
    /* slate-50 */
}

.admin-list-content {
    padding: 1rem 1.5rem;
    /* px-6 py-4 */
}

.admin-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-list-title {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    color: #4f46e5;
    /* indigo-600 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-list-details {
    margin-top: 0.5rem;
    /* mt-2 */
}

.admin-list-desc {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* slate-500 */
}

/* Admin Form Layouts */
.admin-form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .admin-form-row {
        flex-direction: row;
        align-items: flex-end;
    }
}

.admin-form-col {
    width: 100%;
}

@media (min-width: 640px) {
    .admin-form-col {
        flex: 1;
        width: auto;
    }
}

.admin-list-row {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.15s;
    border-bottom: 1px solid #f1f5f9;
}

.admin-list-row:hover {
    background-color: #f8fafc;
}

.admin-list-row:last-child {
    border-bottom: none;
}

.admin-list-info {
    display: flex;
    align-items: center;
}

.scrollable-list-container {
    /* h-96 */
    overflow-y: auto;
}

/* Page Header & Actions */
.page-header-actions {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    /* mt-4 */
}

@media (min-width: 640px) {
    .page-header-actions {
        flex-direction: row;
        align-items: center;
        margin-top: 0;
    }
}

.page-header-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 640px) {
    .page-header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Pagination Content */
.pagination-content {
    display: none;
}

@media (min-width: 640px) {
    .pagination-content {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: space-between;
    }
}

/* Text Buttons */
.btn-text-danger {
    color: #dc2626;
    /* red-600 */
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.btn-text-danger:hover {
    color: #7f1d1d;
    /* red-900 */
}

/* Table Action Spacing */
.table-cell-right a:not(:last-child),
.table-cell-right button:not(:last-child) {
    margin-right: 1rem;
}

/* Admin List Image Spacing */
.admin-list-info img,
.admin-list-info .avatar-placeholder-sm {
    margin-right: 0.75rem;
    /* mr-3 */
}

/* Form Input Spacing */
.form-input {
    margin-top: 0.25rem;
    /* mt-1 */
    display: block;
    width: 100%;
    border-radius: 0.375rem;
    /* rounded-md */
    border-color: #d1d5db;
    /* border-gray-300 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-input:focus {
    border-color: #6366f1;
    /* indigo-500 */
    outline: none;
    box-shadow: 0 0 0 1px #6366f1;
    /* ring-indigo-500 */
}

/* File Input & Previews */
.preview-image {
    height: 8rem;
    /* h-32 */
    width: auto;
    object-fit: contain;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    padding: 0.25rem;
}

.form-input-file {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* slate-500 */
}

.form-input-file::file-selector-button {
    margin-right: 1rem;
    /* mr-4 */
    padding: 0.5rem 1rem;
    /* py-2 px-4 */
    border-radius: 9999px;
    /* rounded-full */
    border: none;
    /* border-0 */
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 600;
    /* font-semibold */
    background-color: #ecfdf5;
    /* bg-emerald-50 */
    color: #047857;
    /* text-emerald-700 */
    cursor: pointer;
    transition: background-color 0.15s;
}

.form-input-file::file-selector-button:hover {
    background-color: #d1fae5;
    /* bg-emerald-100 */
}

/* Admin Utilities */
.link-back {
    color: #059669;
    /* emerald-600 */
    text-decoration: none;
    font-size: 0.875rem;
    /* text-sm */
    transition: color 0.15s;
}

.link-back:hover {
    color: #10b981;
    /* emerald-500 */
}

.section-spacing {
    margin-bottom: 2rem;
    /* mb-8 */
}

.alert-spacing {
    margin-bottom: 1.5rem;
    /* mb-6 */
}

.link-danger {
    color: #dc2626;
    /* red-600 */
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
    cursor: pointer;
}

.link-danger:hover {
    color: #991b1b;
    /* red-800 */
}

.separator {
    color: #cbd5e1;
    /* slate-300 */
    margin: 0 0.25rem;
}

/* Utility Helpers */
.w-full {
    width: 100%;
}

.justify-center {
    justify-content: center;
}

.d-block {
    display: block;
}

.ml-auto {
    margin-left: auto;
}

.btn-action-sm {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border: 1px solid transparent;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: white;
    background-color: #059669;
    /* emerald-600 */
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-action-sm:hover {
    background-color: #047857;
    /* emerald-700 */
}