:root {
    --primary: #0a2463;
    --secondary: #3e92cc;
    --accent: #2dc5fa;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #e6e6e6;
    --success: #4cc9f0;
    --warning: #f72585;
    --card-bg: #16213e;
    --input-bg: #0d1b36;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, var(--dark) 0%, #0a2463 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}
/* Development Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent);
    transform: translateY(-50px);
    transition: transform 0.5s;
}

.popup.active .popup-content {
    transform: translateY(0);
}

.popup-header {
    background: var(--primary);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--accent);
}

.popup-header h3 i {
    margin-right: 10px;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--accent);
}

.popup-body {
    padding: 30px 20px;
    text-align: center;
}

.popup-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.popup-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-popup {
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-popup:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Responsive adjustments for popup */
@media (max-width: 576px) {
    .popup-content {
        width: 95%;
    }
    
    .popup-header h3 {
        font-size: 1.2rem;
    }
    
    .popup-body p {
        font-size: 1rem;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
}


.logo span {
    color: var(--accent);
}
.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent);
}

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

.user-menu img {
    border-radius: 50%;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.features {
    margin-bottom: 60px;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.features > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.scanner {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scanner h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
}

.scanner > p {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
}

.scanner-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.scanner-card {
    background: var(--input-bg);
    padding: 25px;
    border-radius: 8px;
}

.scanner-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--accent);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-size: 16px;
}

.status-indicator {
    margin-bottom: 20px;
}

.status {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(76, 201, 240, 0.2);
    border: 1px solid var(--success);
    border-radius: 20px;
    color: var(--success);
    font-weight: 500;
}

.status.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.btn-scan, .btn-check, .btn-test {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-scan1 {
    width: 100%;
    padding: 12px;
    background-color: lightslategray;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-scan:hover, .btn-check:hover, .btn-test:hover {
    background: var(--secondary);
}

.btn-scan.scanning, .btn-check.scanning, .btn-test.scanning {
    background: var(--secondary);
}

.btn-scan.completed, .btn-check.completed, .btn-test.completed {
    background: var(--success);
}

.lookup {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.lookup h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.lookup-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lookup-card {
    background: var(--input-bg);
    padding: 25px;
    border-radius: 8px;
}

.lookup-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--accent);
}

.url-link {
    display: block;
    color: var(--accent);
    margin: 15px 0;
    word-break: break-all;
}

.audio-controls {
    margin: 20px 0;
}

.control-group {
    margin-bottom: 15px;
}

.control-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.control-group input {
    width: 100%;
}

footer {
    background: var(--card-bg);
    padding: 40px 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin: 20px 0;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features-grid,
    .scanner-options,
    .lookup-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}
/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    header {
        flex-direction: row; /* Keep items in a row */
        text-align: center;
    }
    
    nav ul {
        margin: 20px 0;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features-grid,
    .scanner-options,
    .lookup-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}
/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--card-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Prevent scrolling when menu is open */
.no-scroll {
    overflow: hidden;
    height: 100%;
}

@media (max-width: 768px) {
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo {
        font-size: 24px;
        gap: 8px;
    }
}
/* Reports Page Styles */
.report-form-section {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.report-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--accent);
}

.report-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--accent);
}

.input-group label i {
    margin-right: 8px;
    width: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--input-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-family: inherit;
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--secondary);
}

.btn-submit.completed {
    background: var(--success);
}

.btn-scroll {
    padding: 12px 25px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 20px;
}
.btn-scroll2 {
    padding: 12px 25px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 20px;
}
.btn-scroll3 {
    padding: 12px 25px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 20px;
}

.btn-scroll:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}
.btn-scroll2:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}
.btn-scroll3:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}
.report-features {
    margin-bottom: 60px;
}

.report-features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

/* Active navigation link */
.nav-menu a.active {
    color: var(--accent);
    font-weight: 600;
    
}

/*ADMIN DASHBOARD CSS FILE*/

/* Admin Dashboard Styles */
.admin-hero {
    text-align: center;
    margin-bottom: 40px;
}

.admin-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.admin-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

:root {
    --primary: #0a2463;
    --secondary: #3e92cc;
    --accent: #2dc5fa;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #e6e6e6;
    --success: #4cc9f0;
    --warning: #f72585;
    --card-bg: #16213e;
    --input-bg: #0d1b36;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, var(--dark) 0%, #0a2463 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

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

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    gap: 10px;
}

.logo span {
    color: var(--accent);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
}

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

.user-menu img {
    border-radius: 50%;
}

/* Hero Sections */
.hero,
.admin-hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1,
.admin-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p,
.admin-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Common Section Styles */
.features,
.report-features {
    margin-bottom: 60px;
}

.features h2,
.report-features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.features > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Grid Layouts */
.features-grid,
.scanner-options,
.lookup-content,
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Card Styles */
.feature-card,
.scanner-card,
.lookup-card,
.admin-card,
.suggestion,
.feedback,
.report-form-section,
.scanner {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

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

.feature-card,
.scanner-card,
.lookup-card {
    transition: transform 0.3s;
    text-align: center;
}

/* Icon Styles */
.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.feature-card h3,
.scanner-card h3,
.lookup-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Form Elements */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--accent);
}

.input-group label i {
    margin-right: 8px;
    width: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--input-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-family: inherit;
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Button Styles */
.btn,
.btn-scan,
.btn-check,
.btn-test,
.btn-admin,
.btn-submit,
.btn-popup,
.btn-scroll,
.btn-action {
    padding: 12px 25px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
}

.btn:hover,
.btn-scan:hover,
.btn-check:hover,
.btn-test:hover,
.btn-admin:hover,
.btn-submit:hover,
.btn-popup:hover,
.btn-scroll:hover,
.btn-action:hover {
    background: var(--secondary);
}

.btn-scan,
.btn-check,
.btn-test,
.btn-submit {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
}

.btn-admin {
    margin-top: 15px;
}

.btn-popup {
    padding: 12px 30px;
    transition: transform 0.2s;
}

.btn-popup:hover {
    transform: translateY(-2px);
}

.btn-scroll {
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn-scroll:hover {
    transform: translateY(-2px);
}

.btn-action {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.btn-action:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.btn-danger {
    background: rgba(247, 37, 133, 0.1);
    border-color: rgba(247, 37, 133, 0.3);
}

.btn-danger:hover {
    background: rgba(247, 37, 133, 0.2);
    border-color: var(--warning);
}

/* Status Indicators */
.status {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(76, 201, 240, 0.2);
    border: 1px solid var(--success);
    border-radius: 20px;
    color: var(--success);
    font-weight: 500;
}

.status.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Admin Dashboard Styles */
.admin-container {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.admin-sidebar {
    flex: 0 0 250px;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: fit-content;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-nav-btn {
    padding: 12px 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.admin-nav-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.admin-nav-btn.active {
    background: var(--primary);
    border-color: var(--accent);
}

.admin-nav-btn i {
    margin-right: 10px;
    width: 20px;
}

.admin-content {
    flex: 1;
}

.admin-tab {
    display: none;
}

.admin-tab.active {
    display: block;
}

.admin-card h2,
.admin-card h3 {
    margin-bottom: 20px;
    color: var(--accent);
}

.admin-form {
    max-width: 100%;
}

/* List Styles */
.flags-list,
.partnerships-list,
.job-postings-list,
.protected-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flag-item,
.partnership-item,
.job-item,
.protected-item {
    background: var(--input-bg);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.flag-header,
.partnership-header,
.protected-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.flag-id,
.protected-id {
    font-weight: 600;
    color: var(--accent);
}

.flag-level {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.flag-level.low {
    background: rgba(76, 201, 240, 0.2);
    color: var(--success);
}

.flag-level.medium {
    background: rgba(247, 202, 24, 0.2);
    color: #f7ca18;
}

.flag-level.high {
    background: rgba(247, 37, 133, 0.2);
    color: var(--warning);
}

.partnership-type,
.protected-status {
    padding: 4px 10px;
    background: rgba(45, 197, 250, 0.2);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
}

.protected-status.active {
    background: rgba(76, 201, 240, 0.2);
    color: var(--success);
}

.partnership-actions,
.job-actions,
.protected-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Table Styles */
.reports-filter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.reports-table,
.products-table {
    background: var(--input-bg);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 15px;
    font-weight: 600;
    gap: 10px;
}

.products-table .table-header {
    grid-template-columns: 1fr 2fr 1fr 1fr 0.5fr;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 10px;
    align-items: center;
}

.products-table .table-row {
    grid-template-columns: 1fr 2fr 1fr 1fr 0.5fr;
}

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

/* Footer */
footer {
    background: var(--card-bg);
    padding: 40px 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Development Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent);
    transform: translateY(-50px);
    transition: transform 0.5s;
}

.popup.active .popup-content {
    transform: translateY(0);
}

.popup-header {
    background: var(--primary);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--accent);
}

.popup-header h3 i {
    margin-right: 10px;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--accent);
}

.popup-body {
    padding: 30px 20px;
    text-align: center;
}

.popup-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.popup-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent scrolling when menu is open */
.no-scroll {
    overflow: hidden;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        flex: 1;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .table-header span, .table-row span {
        padding: 5px 0;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: row;
        text-align: center;
    }
    
    nav ul {
        margin: 20px 0;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1,
    .admin-hero h1 {
        font-size: 2.2rem;
    }
    
    .features-grid,
    .scanner-options,
    .lookup-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--card-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .admin-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .admin-nav-btn {
        white-space: nowrap;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-quick-actions {
        justify-content: center;
    }
    
    .reports-filter {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo {
        font-size: 24px;
        gap: 8px;
    }
    
    .suggestion, 
    .feedback {
        padding: 20px;
    }
    
    .suggestion h2, 
    .feedback h2 {
        font-size: 1.5rem;
    }
    
    .form-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .form-tab {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .hero h1,
    .admin-hero h1 {
        font-size: 1.8rem;
    }
}

/* Quick Actions */
.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-quick-action {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-quick-action:hover, 
.btn-quick-action.active {
    background: rgba(45, 197, 250, 0.2);
    border-color: var(--accent);
}

/* Response area */
#response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    background: var(--card-bg);
    text-align: center;
    font-weight: 500;
}

/* Form Tabs */
.form-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-tab {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-tab.active {
    border-bottom-color: var(--accent);
    color: var(--accent);
}

.form-tab:hover {
    color: var(--accent);
}
/* Quick Actions */
.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-quick-action {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-quick-action:hover, .btn-quick-action.active {
    background: rgba(45, 197, 250, 0.2);
    border-color: var(--accent);
}

/* List Styles */
.flags-list, .partnerships-list, .job-postings-list, .protected-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flag-item, .partnership-item, .job-item, .protected-item {
    background: var(--input-bg);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.flag-header, .partnership-header, .protected-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.flag-id, .protected-id {
    font-weight: 600;
    color: var(--accent);
}

.flag-level {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.flag-level.low {
    background: rgba(76, 201, 240, 0.2);
    color: var(--success);
}

.flag-level.medium {
    background: rgba(247, 202, 24, 0.2);
    color: #f7ca18;
}

.flag-level.high {
    background: rgba(247, 37, 133, 0.2);
    color: var(--warning);
}

.partnership-type, .protected-status {
    padding: 4px 10px;
    background: rgba(45, 197, 250, 0.2);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
}

.protected-status.active {
    background: rgba(76, 201, 240, 0.2);
    color: var(--success);
}

.partnership-actions, .job-actions, .protected-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-action {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-action:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.btn-danger {
    background: rgba(247, 37, 133, 0.1);
    border-color: rgba(247, 37, 133, 0.3);
}

.btn-danger:hover {
    background: rgba(247, 37, 133, 0.2);
    border-color: var(--warning);
}

/* Table Styles */
.reports-filter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.reports-table, .products-table {
    background: var(--input-bg);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 15px;
    font-weight: 600;
    gap: 10px;
}

.products-table .table-header {
    grid-template-columns: 1fr 2fr 1fr 1fr 0.5fr;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 10px;
    align-items: center;
}

.products-table .table-row {
    grid-template-columns: 1fr 2fr 1fr 1fr 0.5fr;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        flex: 1;
    }

    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .table-header span, .table-row span {
        padding: 5px 0;
    }
}

@media (max-width: 768px) {
    .admin-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .admin-nav-btn {
        white-space: nowrap;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-quick-actions {
        justify-content: center;
    }
    
    .reports-filter {
        grid-template-columns: 1fr;
    }
}

/* Public Forms Page Styles */
.suggestion, .feedback {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.suggestion h2, .feedback h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--accent);
}

.suggestion-form, .feedback-form, .appeal-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Public Forms Layout Fixes */
.appeals, .suggestion, .feedback {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.appeals h2, .suggestion h2, .feedback h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--accent);
}

.appeal-form, .suggestion-form, .feedback-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Ensure proper form row layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Make sure textareas span full width */
.appeal-form .input-group:nth-child(3),
.suggestion-form .input-group:nth-child(3),
.feedback-form .input-group:nth-child(3) {
    grid-column: 1 / span 2;
}

/* Responsive adjustments for forms */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .appeal-form .input-group:nth-child(3),
    .suggestion-form .input-group:nth-child(3),
    .feedback-form .input-group:nth-child(3) {
        grid-column: 1;
    }
    
    .appeals, .suggestion, .feedback {
        padding: 20px;
    }
    
    .appeals h2, .suggestion h2, .feedback h2 {
        font-size: 1.5rem;
    }
}

/* Form Tabs Style (if you want to add tabs later) */
.form-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-tab {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-tab.active {
    border-bottom-color: var(--accent);
    color: var(--accent);
}

.form-tab:hover {
    color: var(--accent);
}

/* Form Styles */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--accent);
}

.input-group label i {
    margin-right: 8px;
    width: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--input-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-family: inherit;
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--secondary);
}

.btn-submit.completed {
    background: var(--success);
}

.btn-scroll {
    padding: 12px 25px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 20px;
}

.btn-scroll:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

#response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    background: var(--card-bg);
    text-align: center;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .suggestion, .feedback {
        padding: 20px;
    }
    
    .suggestion h2, .feedback h2 {
        font-size: 1.5rem;
    }
    
    .form-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .form-tab {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

.job-item {
    background: var(--input-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-type {
    padding: 4px 12px;
    background: rgba(45, 197, 250, 0.2);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}