:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-cyan: #00f3ff;
    --accent-purple: #bd00ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

body {
    font-family: var(--font-heading);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), transparent);
}

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

.cursor {
    animation: blink 1s infinite;
    color: var(--accent-cyan);
}

nav {
    display: flex;
    align-items: center;
    gap: 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.3rem;
    margin-left: 1.5rem;
}

.lang-btn {
    padding: 0.35rem 0.7rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.1);
}

.lang-btn.active {
    background: var(--accent-cyan);
    color: var(--bg-color);
    border-color: var(--accent-cyan);
    font-weight: 700;
}

/* Admin Header Right Group */
.admin-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    border: 1px solid var(--accent-cyan);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
    color: var(--accent-cyan);
}

.cta-button:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

/* Sections */
section {
    padding: 8rem 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-purple);
}

.num {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Hero */
#hero {
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-content p {
    font-family: var(--font-mono);
    max-width: 500px;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.explore-btn {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    transition: transform 0.3s;
}

.explore-btn:hover {
    color: var(--accent-cyan);
    transform: translateY(5px);
}

/* About Grid */
.about-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
}

.card .icon {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Job List */
.job-item {
    background: var(--glass-bg);
    border-left: 3px solid var(--glass-border);
    padding: 2rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-item:hover {
    border-left-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
}

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

.job-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.job-location {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    opacity: 0.6;
}

.job-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--accent-cyan);
}

.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.job-item.active .job-details {
    max-height: 5000px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 6rem;
    border-top: 1px solid var(--glass-border);
    overflow: visible !important;
}

.job-details .cta-button {
    display: inline-block;
    margin-bottom: 1rem;
}

.job-desc,
.job-reqs {
    margin-bottom: 1.5rem;
}

.job-reqs ul {
    list-style: none;
    margin-left: 1rem;
}

.job-reqs li::before {
    content: '> ';
    color: var(--accent-purple);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--glass-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    /* Adjust based on border and padding */
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--bg-color);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
}

.timeline-step {
    font-family: var(--font-mono);
    color: var(--accent-purple);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 4rem 10%;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

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

.footer-left h3 {
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.footer-left p {
    font-size: 0.8rem;
    opacity: 0.5;
}

.socials a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--accent-cyan);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    header {
        padding: 1.5rem;
    }

    section {
        padding: 6rem 5%;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

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

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.modal-header p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.file-upload-label {
    display: block;
    width: 100%;
    padding: 3rem 1rem;
    border: 2px dashed var(--glass-border);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-label:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.05);
}

.file-upload-label i {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    display: block;
}

.file-upload-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

#file-upload {
    display: none;
}

.submit-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--glass-border);
    color: var(--text-color);
}

/* ============ ADMIN PANEL STYLES ============ */

/* Admin Login Modal Specific Styles */
.admin-login-modal {
    max-width: 400px;
}

.admin-icon {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.admin-subtitle {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 2rem !important;
}

.admin-login-modal input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: var(--text-color);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.admin-login-modal input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.admin-login-modal input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.login-error {
    color: #ff4444;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    min-height: 1.2rem;
    font-family: var(--font-mono);
}

/* Admin Dashboard Panel */
.admin-dashboard {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    z-index: 2000;
    display: none;
    flex-direction: column;
}

.admin-dashboard.active {
    display: flex;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

.admin-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.admin-title i {
    color: var(--accent-purple);
}

.admin-logout-btn {
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-logout-btn:hover {
    background: var(--accent-purple);
    color: #000;
}

.admin-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 320px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-cyan);
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-header i {
    color: var(--accent-purple);
}

.app-count {
    margin-left: auto;
    background: var(--accent-purple);
    color: #000;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.applications-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.loading-spinner {
    padding: 2rem;
    text-align: center;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.date-group {
    margin-bottom: 1rem;
}

.date-header {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-purple);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.date-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.app-item {
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.app-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent-cyan);
}

.app-item.active {
    background: rgba(0, 243, 255, 0.1);
    border-left-color: var(--accent-cyan);
}

.app-item-title {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-item-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    opacity: 0.5;
    display: flex;
    gap: 1rem;
}

.app-item-role {
    color: var(--accent-cyan);
}

/* Admin Main Content */
.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.preview-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--glass-border);
    min-height: 0;
}

.analysis-section {
    height: 300px;
    display: flex;
    flex-direction: column;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.section-header i {
    color: var(--accent-purple);
}

.current-file {
    margin-left: auto;
    opacity: 0.5;
    font-size: 0.75rem;
}

.analyze-btn {
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 0.4rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analyze-btn:hover:not(:disabled) {
    background: var(--accent-cyan);
    color: #000;
}

.analyze-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pdf-preview-container {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pdf-preview-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.no-file-selected,
.no-analysis {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.2);
}

.no-file-selected i,
.no-analysis i {
    font-size: 3rem;
}

.no-file-selected p,
.no-analysis p {
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.analysis-container {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

/* Analysis Results Styling */
.analysis-result {
    font-size: 0.9rem;
    line-height: 1.6;
}

.analysis-result h4 {
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin: 1.25rem 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analysis-result h4:first-child {
    margin-top: 0;
}

.analysis-result h4 i {
    color: var(--accent-purple);
}

.analysis-result p {
    margin: 0.25rem 0;
    opacity: 0.85;
}

.analysis-result ul {
    list-style: none;
    padding-left: 1rem;
    margin: 0.5rem 0;
}

.analysis-result li {
    position: relative;
    padding-left: 1rem;
    margin: 0.25rem 0;
    opacity: 0.85;
}

.analysis-result li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

.score-display {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 243, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin: 0.5rem 0;
}

.score-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.score-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    opacity: 0.5;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.skill-tag {
    background: rgba(189, 0, 255, 0.15);
    border: 1px solid rgba(189, 0, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-purple);
}

.analysis-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.analysis-error {
    color: #ff4444;
    padding: 1rem;
    background: rgba(255, 68, 68, 0.1);
    border-left: 3px solid #ff4444;
}

/* Demo mode notice */
.demo-notice {
    background: rgba(189, 0, 255, 0.1);
    border: 1px solid rgba(189, 0, 255, 0.3);
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-purple);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .admin-sidebar {
        width: 260px;
    }

    .analysis-section {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .admin-body {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

    .analysis-section {
        height: 200px;
    }
}

/* ============ NEW ADMIN UI ============ */

/* Navigation Tabs */
.admin-nav-tabs {
    display: flex;
    gap: 1rem;
    margin: 0 2rem;
}

.nav-tab {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
}

.nav-tab:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.05);
}

.nav-tab.active {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-bottom: 0.2rem;
    text-align: center;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--accent-cyan);
    font-weight: 700;
}

/* Position Management */
.admin-view {
    display: flex;
    flex: 1;
    overflow: hidden;
    width: 100%;
}

.positions-manager {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow: hidden;
}

.manager-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.manager-header h3 {
    font-size: 2rem;
    margin: 0;
}

.cta-button.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-positions-list {
    flex: 1;
    overflow-y: auto;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.position-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.position-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.pos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pos-header h4 {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin: 0;
}

.pos-actions {
    display: flex;
    gap: 0.5rem;
}

.edit-btn {
    background: transparent;
    border: none;
    color: var(--accent-cyan);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.edit-btn:hover {
    opacity: 1;
}

.delete-btn {
    background: transparent;
    border: none;
    color: #ff4444;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.delete-btn:hover {
    opacity: 1;
}

.pos-meta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    opacity: 0.6;
}

.pos-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Admin Input Forms */
.admin-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.8rem;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.admin-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

textarea.admin-input {
    resize: vertical;
}