/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* COLORS */
:root {
    --primary: #1F3C88;
    --secondary: #4A6CF7;
    --background: #F5F7FB;
    --text: #1A1A1A;
    --accent: #FFB703;
}

/* BODY */
body {
    background-color: #F5F5F5; /* Change this to your preferred color */
    color: #333333; /* Dark text for readability */
    font-family: Arial, sans-serif; /* Optional: makes it look more professional */
}


/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: var(--primary);
}

/* LEFT */
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 60px;
    height: 60px;
}



.site-title {
    color: white;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.site-title:hover{
    color: var(--accent);
}
/* RIGHT */
.nav-right a {
    margin-left: 25px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: 0.3s;
    font-weight: bold;
}

.nav-right a:hover {
    color: var(--accent);
}
/* HOME ADVERTISEMENT BANNER */
.home-ad {
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 45px 50px;
    border-radius: 22px;
    text-align: center;
    margin-top: -80px;

    background: linear-gradient(
        135deg,
        rgba(31, 60, 136, 0.9),
        rgba(74, 108, 247, 0.9)
    );

    color: white;
    box-shadow: 0 25px 50px rgba(31, 60, 136, 0.35);

    animation: floatAd 4s ease-in-out infinite;
}

/* FLOATING EFFECT */
@keyframes floatAd {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* HEADLINE */
.ad-headline {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* MAIN TEXT */
.ad-text {
    font-size: 21px;
    line-height: 1.8;
    font-weight: 500;
}

/* BRAND NAME */
.highlight {
    color: #ffdd57;
    font-weight: 700;
}

/* FEATURES */
.accent {
    color: #ffb703;
    font-weight: 600;
}

/* CERTIFICATE TEXT */
.certificate {
    background: white;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
}























/* ACCOUNT BUTTON */
.account-btn {
    padding: 8px 16px;
    background-color: var(--secondary);
    border-radius: 5px;
}

.page-section {
    display: none;
    padding: 120px 40px;
    min-height: 100vh;
}

.active-section {
    display: block;
}


/* STICKY NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ACTIVE LINK */
.nav-right a.active {
    border-bottom: 2px solid var(--accent);
}
/* ACCOUNT SECTION */
.account-box {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.account-box h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.account-box p {
    margin-bottom: 20px;
    font-size: 14px;
}

.account-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.primary-btn {
    width: 100%;
    padding: 12px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.secondary-btn {
    width: 100%;
    padding: 12px;
    background: white;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.primary-btn:hover {
    background: var(--primary);
}

.forgot {
    display: block;
    margin: 10px 0;
    font-size: 14px;
    color: var(--secondary);
    cursor: pointer;
}

.switch {
    margin-top: 15px;
    font-size: 14px;
}

.switch span {
    color: var(--secondary);
    cursor: pointer;
    font-weight: 600;
}

.hidden {
    display: none;
}
.error {
    color: red;
    font-size: 13px;
    text-align: left;
    margin-bottom: 5px;
}
.account-menu {
    position: relative;
    color: white;
    cursor: pointer;
}
/* HOVER DROPDOWN */
.account-menu:hover .account-dropdown {
    display: block;
}


.account-name {
    font-weight: 600;
}

.account-dropdown {
    position: absolute;
    top: 35px;
    right: 0;
    background: white;
    color: black;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none;
    padding: 10px;
}

.account-dropdown p {
    font-size: 14px;
    margin: 5px 0;
}

.account-dropdown a {
    display: block;
    padding: 8px 5px;
    font-size: 14px;
    cursor: pointer;
}

.account-dropdown a:hover {
    background: #f0f0f0;
}

.account-dropdown hr {
    margin: 8px 0;
}

.account-dropdown.show {
    display: block;
}
.password-field {
    position: relative;
}

.password-field input {
    width: 100%;
    padding-right: 40px;
}

.toggle-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}
.danger-btn {
    width: 100%;
    padding: 12px;
    background: #e63946;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}

.danger-btn:hover {
    background: #c1121f;
}
/* SUCCESS MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.hidden {
    display: none !important;
}




/* COURSE GRID LAYOUT */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* COURSE CARD */
.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE VIDEO CONTAINER (16:9 Ratio) */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.course-info {
    padding: 15px;
    text-align: center;
}

.course-info h3 {
    font-size: 18px;
    color: var(--primary);
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
    .course-grid {
        grid-template-columns: 1fr; /* Stack videos on small screens */
    }
}

.home-conlas{
 font-size: 20px;
 font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}


/* FOOTER STYLES */
.site-footer {
    background-color: var(--primary); /* Uses your deep blue */
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
    font-family: "Segoe UI", sans-serif;
    margin-left: -50px;
    margin-right: -50px;
    margin-bottom: -120px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 40px;
 
}

.footer-logo {
    color: var(--accent); /* Uses your yellow accent */
    font-size: 26px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h3, 
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.7;
}

/* MOBILE RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .footer-links h3, .footer-contact h3 {
        margin-bottom: 15px;
    }
}




/* ROADMAP SECTION */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-top: -70px;
    color: var(--primary);
    margin-bottom: 40px;
}

.roadmap-card {
    max-width: 800px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* HEADER */
.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.roadmap-header h3 {
    font-size: 20px;
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* CONTENT */
.roadmap-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
}

.roadmap-content ul {
    padding: 20px 30px;
}

.roadmap-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* ACTIVE STATE */
.roadmap-card.active .roadmap-content {
    max-height: 600px;
}

.roadmap-card.active .arrow {
    transform: rotate(180deg);
}



/* COURSES GRID - 4 PER ROW */
.course-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* REUSE EXISTING COURSE CARD STYLES */
.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .course-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .course-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .course-grid-4 {
        grid-template-columns: 1fr;
    }
}


/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 10px;
}

.pagination button {
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    background: var(--secondary);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.pagination button:hover {
    background: var(--primary);
}

.pagination .active {
    background: var(--accent);
    color: black;
    font-weight: bold;
}


#success-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    max-width: 400px;
}

.hidden { display: none !important; }

.close-modal {
    float: right;
    font-size: 24px;
    cursor: pointer;
}



.forgot-link {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--secondary);
    cursor: pointer;
    text-decoration: underline;
}

.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex; justify-content: center; align-items: center;
    z-index: 3000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%; max-width: 400px;
    text-align: center;
}

.reset-confirm-btn { background: var(--success); color: white; border: none; padding: 10px; border-radius: 5px; flex: 1; cursor: pointer; }
.reset-cancel-btn { background: #666; color: white; border: none; padding: 10px; border-radius: 5px; flex: 1; cursor: pointer; }




#tasks {
    padding: 30px;
}

.task-course {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.task-course h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.task-course ul {
    padding-left: 20px;
}

.task-course li {
    margin-bottom: 6px;
}









.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.about-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.about-card p {
    line-height: 1.6;
    font-size: 15px;
}

.about-card.highlight {
    border-left: 5px solid var(--primary);
    background: #f9fbff;
    color: black;
}






/* MOBILE MENU */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-right {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary);
        margin-top: 15px;
        padding-bottom: 15px;
    }

    .nav-right a {
        margin: 12px 0;
        text-align: center;
    }

    .nav-right.show {
        display: flex;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-right {
        margin-top: 15px;
    }

    .nav-right a {
        margin: 10px;
        display: inline-block;
    }
}


@media (max-width: 768px) {

    .home-ad {
        max-width: 95%;
        margin: 20px auto;
        padding: 22px 18px;
       margin-top: -40px;
        /* Keep floating but make it subtle */
        animation: floatAdMobile 5s ease-in-out infinite;

        border-radius: 16px;
        box-shadow: 0 12px 28px rgba(31, 60, 136, 0.25);
    }

    .ad-headline {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .ad-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .certificate {
        padding: 3px 8px;
        font-size: 14px;
    }
}

/* Subtle floating animation for mobile */
@keyframes floatAdMobile {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); } /* smaller movement */
    100% { transform: translateY(0); }
}





/* ==========================
   DASHBOARD OVERLAY PANEL (ENHANCED)
========================== */
#dashboard-panel {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.06); /* still no blur */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

/* Bigger box: wider + taller */
.dashboard-panel-content {
    width: 90%;
    max-width: 1200px;          /* increased horizontally */
    min-height: 500px;          /* increased vertically */
    background: white;
    border-radius: 18px;
    padding: 40px 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    position: relative;
    animation: slideUp 0.35s ease;
    overflow-y: auto;
}

/* Smooth entrance animation */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close button */
.close-panel {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #444;
}

.close-panel:hover {
    color: red;
}

/* Panel heading */
#panel-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Panel content text */
#panel-body {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* Lists inside panel */
#panel-body ul {
    margin-top: 15px;
    padding-left: 20px;
}

#panel-body li {
    margin-bottom: 12px;
    font-size: 17px;
}



/* ==========================
   CHATBOT STYLES
========================== */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    max-height: 600px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
    z-index: 4000;
    font-family: Arial, sans-serif;
}

/* Header */
#chatbot-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Body */
#chatbot-body {
    display: flex;
    flex-direction: column;
    height: 520px;
}

/* Messages */
#chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f7f8fc;
}

.message {
    margin-bottom: 12px;
    line-height: 1.6;
}

.bot {
    background: #e8edff;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
}

.user {
    background: var(--secondary);
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
    margin-left: auto;
}

/* Suggestions */
#chatbot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: white;
}

#chatbot-suggestions button {
    flex: 1;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid var(--secondary);
    background: white;
    cursor: pointer;
}

/* Input */
#chatbot-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

#chatbot-input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

#chatbot-input-area button {
    margin-left: 10px;
    padding: 10px 18px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}



/* ==========================
   CERTIFICATE APPLICATION
========================== */

#certificate-form {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3500;
}

#certificate-form input,
#certificate-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

#certificate-form textarea {
    resize: vertical;
    min-height: 120px;
}

#certificate-status {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
}
#certificate-form input[type="file"] {
    margin-top: 10px;
    font-size: 14px;
}

.hidden {
    display: none;
}


/* ==========================
   ADMIN DASHBOARD STYLES
========================== */

/* Container for admin management cards */
#admin-dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.admin-card {
    background: white;
    max-width: 500px;
    width: 100%;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* Matches roadmap-card shadow */
    border-top: 4px solid var(--secondary); /* Brand color accent */
}

.admin-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 22px;
}

.admin-card p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
}

/* The Submission Button */
.admin-btn {
    background-color: var(--secondary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
}

.admin-btn:hover {
    background-color: var(--primary); /* Darkens on hover like other buttons */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
}




/* ==========================
   PROFESSIONAL ADMIN UI
========================== */
.admin-panel-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.welcome-text h2 { color: var(--primary); margin: 0; }
.welcome-text p { color: #666; font-size: 14px; margin-top: 5px; }

.admin-status-badge {
    background: #e3fcef;
    color: #00875a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Stats Row */
.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.stat-icon { font-size: 24px; }
.stat-info h4 { font-size: 22px; color: var(--secondary); margin: 0; }
.stat-info p { font-size: 12px; color: #888; margin: 0; text-transform: uppercase; }

/* Grid Layout for Actions */
.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.admin-tile {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 4px solid var(--secondary);
}

.admin-tile:hover { transform: translateY(-5px); }
.tile-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.admin-tile p { color: #666; font-size: 14px; line-height: 1.6; min-height: 45px; }

/* Buttons */
.admin-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.2s;
}

.admin-btn.primary { background: var(--secondary); color: white; }
.admin-btn.outline-danger {
    background: transparent;
    border: 1px solid #ff5252;
    color: #ff5252;
}

.admin-btn.outline-danger:hover {
    background: #ff5252;
    color: white;
}

/* Danger zone styling */
.danger-zone { border-top: 4px solid #ff5252; }


