/* 
   PlaceholderRP Design System 
   Theme: Dark + Neon Green (#39ff14)
   Approach: Mobile First
*/

:root {
    --primary-color: #df7d2a;
    --primary-glow: rgba(223, 125, 42, 0.5);
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --primary-gradient: linear-gradient(to right, #b86218, #df7d2a, #ffd700);
    --transition: all 0.3s ease;
}

.logo-gradient {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(223, 125, 42, 0.5));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.w-margin-top {
    margin-top: 2rem;
}

.neon-text {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(223, 125, 42, 0.5));
}

.glow-effect {
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.btn-primary:hover {
    color: #000;
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-secondary {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

.btn-outline {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 5px 0;
    border-radius: 0;
}

.btn-outline:hover {
    color: #fff;
    border-color: #fff;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.btn-north {
    color: #e6b800;
    border: 1px solid #e6b800;
    background: transparent;
    padding: 10px 25px;
    border-radius: 5px;
}

.btn-north:hover {
    background: #e6b800;
    color: #000;
    box-shadow: 0 0 15px rgba(230, 184, 0, 0.5);
}

.btn-south {
    color: #9d00ff;
    border: 1px solid #9d00ff;
    background: transparent;
    padding: 10px 25px;
    border-radius: 5px;
}

.btn-south:hover {
    background: #9d00ff;
    color: #fff;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
}



.btn-logout {
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-logout:hover {
    background: rgba(255, 71, 87, 0.1);
    border-color: #ff4757;
    color: #ff4757;
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.2);
}

.btn-sm {
    padding: 6px 15px;
    font-size: 0.85rem;
}

.btn-glass-action {
    width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
    color: #fff;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 15px;
}

.btn-glass-action:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.1);
    background: rgba(20, 20, 20, 0.6);
}

/* Navigation (Mobile First) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Hidden by default on mobile, toggled via JS */
/* Hidden by default on mobile, toggled via JS */
.nav-links {
    display: none;
    /* Styles for when it is open on mobile */
}

@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a0a0a;
        padding: 20px;
        border-bottom: 1px solid #333;
        gap: 20px;
        text-align: center;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobile Toggle visible by default */
.mobile-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section (Mobile First) */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--bg-dark));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    /* Mobile Size */
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1rem;
    /* Mobile Size */
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 10px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    gap: 15px;
    justify-content: center;
    align-items: center;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Sections General */
.section {
    padding: 60px 0;
    /* Reduced padding for mobile */
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    /* Mobile Size */
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack on mobile */
    gap: 30px;
}

.glass-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: var(--transition);
    text-align: center;
}

.glass-card:hover {
    transform: translateY(-5px);
    /* Reduced movement on mobile/touch */
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.1);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.glass-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Impressions (Split Layout) */
.split-layout {
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
    /* Center text on mobile */
}

/* Reverse handles specific ordering on desktop, default mobile is top-down */
.split-layout.reverse {
    display: flex;
    flex-direction: column;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.split-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 250px;
    /* Smaller height for mobile */
    background: #111;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.glow-border {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.05);
}

/* Entry Process */
.entry-process {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.steps-grid {
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
    width: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-connector {
    display: none;
    /* Hidden on mobile */
}

/* Footer (Mobile First) */
.footer {
    background: #050505;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    gap: 30px;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    gap: 15px;
    align-items: center;
    text-align: center;
    font-size: 0.85rem;
    color: #555;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--primary-color);
}


/* USER DASHBOARD STYLES (Mobile First) */
.dashboard-nav {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
}

.dashboard-container {
    padding: 100px 20px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(circle at top center, #1a1a1a 0%, #0a0a0a 60%);
}

.dashboard-title {
    margin-bottom: 40px;
    font-size: 2rem;
    /* Mobile */
    text-align: center;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.username {
    font-weight: 600;
    color: var(--text-muted);
}

.username i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Path Selection */
.path-selection {
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
    align-items: center;
}

.path-card {
    width: 100%;
    max-width: 300px;
    /* Limit width */
    height: auto;
    min-height: 350px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.path-card:hover {
    transform: translateY(-5px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

/* Card Glows */
.north-glow {
    background: radial-gradient(circle at center, rgba(230, 184, 0, 0.4), transparent 70%);
    /* Amber */
}

.ls-glow {
    background: radial-gradient(circle at center, rgba(157, 0, 255, 0.4), transparent 70%);
    /* Purple */
}

/* Hover States */
.path-card.active[data-path="north"] {
    border-color: #e6b800;
    box-shadow: 0 0 30px rgba(230, 184, 0, 0.2);
}

.path-card.active[data-path="south"] {
    border-color: #9d00ff;
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.2);
}

/* Icon Colors */
.path-card[data-path="north"] .icon-wrapper {
    color: #e6b800;
    text-shadow: 0 0 20px rgba(230, 184, 0, 0.5);
}

.path-card[data-path="south"] .icon-wrapper {
    color: #9d00ff;
    text-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
}

.path-card h2 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.path-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.btn-path {
    margin-top: auto;
    padding: 10px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.path-card:hover .btn-path {
    background: #fff;
    color: #000;
}

.path-card.active .btn-path {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

/* Story Form Section */
.story-section {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

.story-section.hidden {
    display: none;
}

.glass-form {
    background: rgba(15, 15, 15, 0.9);
    padding: 20px;
    /* Reduced for mobile */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-title {
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.1);
}

.word-count {
    text-align: right;
    font-size: 0.8rem;
    color: #555;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    flex-direction: column-reverse;
    /* Stack buttons on mobile */
    gap: 15px;
    margin-top: 20px;
}

.form-actions .btn {
    width: 100%;
    text-align: center;
}

/* Full width buttons */


/* Success Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #111;
    padding: 30px;
    text-align: center;
    max-width: 90%;
    /* Responsive width */
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.1);
    border-radius: 15px;
}

.check-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content h2 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}


/* ========================================= */
/* DESKTOP / TABLET OVERRIDES (min-width)    */
/* ========================================= */

@media (min-width: 769px) {

    /* Navigation */
    .nav-links {
        display: flex;
        gap: 30px;
    }

    .mobile-toggle {
        display: none;
    }

    /* Hero */
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    /* Sections */
    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .glass-card:hover {
        transform: translateY(-10px);
    }

    /* Impressions */
    .split-layout {
        flex-direction: row;
        text-align: left;
    }

    .split-layout.reverse {
        flex-direction: row-reverse;
    }

    .image-placeholder {
        height: 300px;
    }

    /* Entry Process */
    .steps-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .step-connector {
        display: block;
        flex: 1;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 30px;
    }

    /* Footer */
    .footer-top {
        flex-direction: row;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: row;
    }

    /* Dashboard */
    .dashboard-title {
        font-size: 3rem;
    }

    .path-selection {
        flex-direction: row;
    }

    .path-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .form-row {
        flex-direction: row;
    }

    .glass-form {
        padding: 40px;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-actions {
        flex-direction: row;
    }

    .form-actions .btn {
        width: auto;
    }
}

/* ========================================= */
/* DASHBOARD LAYOUT STYLES                   */
/* ========================================= */

.dashboard-body {
    overflow-x: hidden;
}

.dashboard-wrapper {
    display: flex;
    min-height: calc(100vh - 150px);
    padding-top: 70px;
}

.dashboard-sidebar {
    width: 250px;
    background: rgba(10, 10, 10, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    position: fixed;
    top: 70px;
    left: 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 100;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        width: 100%;
    }

    .dashboard-sidebar.active {
        transform: translateX(0);
    }

    .dashboard-wrapper {
        flex-direction: column;
    }

    .dashboard-main {
        margin-left: 0 !important;
    }
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 15px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.sidebar-link.active {
    background: var(--primary-color);
    color: #000;
}

.sidebar-link i {
    width: 20px;
    text-align: center;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.sidebar-link.admin-link {
    color: var(--primary-color);
}

.sidebar-link.admin-link:hover {
    background: rgba(223, 125, 42, 0.1);
}

.dashboard-main {
    flex: 1;
    margin-left: 250px;
    padding: 20px;
    min-height: calc(100vh - 150px);
}

@media (min-width: 769px) {
    .dashboard-main {
        margin-left: 250px;
    }
}

.dashboard-footer {
    background: var(--bg-darker);
    padding: 20px 0;
    margin-left: 250px;
}

@media (max-width: 768px) {
    .dashboard-footer {
        margin-left: 0;
    }
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.alert-error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

/* Admin Styles */
.admin-badge {
    background: var(--primary-color);
    color: #000;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    margin-left: 10px;
    vertical-align: middle;
}

.admin-sidebar .sidebar-link.active {
    background: var(--primary-color);
}

.admin-nav {
    border-bottom: 2px solid var(--primary-color);
}