/* admin/style.css — Eksprom Admin Theme */

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

body {
    font-family: 'Orbitron', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
    color: #e6f7fb;
    line-height: 1.5;
    min-height: 100vh;
    padding: 2rem;
}

/* Headings */
h1, h2, h3 {
    color: #00e6ff;
    text-align: center;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #00e6ff;
    text-decoration: none;
    transition: 0.2s;
}
a:hover {
    color: #00b3ff;
    text-shadow: 0 0 6px rgba(0,230,255,0.3);
}

/* Navigation */
nav {
    text-align: center;
    margin-bottom: 2rem;
}
nav a {
    margin: 0 1rem;
    font-weight: 600;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 480px;
    margin: 0 auto 2rem auto;
}
input, select, textarea, button {
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}
input, select, textarea {
    background: rgba(255,255,255,0.02);
    color: #e6f7fb;
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid #00e6ff;
    background: rgba(0,230,255,0.05);
}
textarea { resize: vertical; min-height: 80px; }

/* Buttons */
button {
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #00e6ff;
    color: #071019;
    transition: all 0.2s ease;
}
button:hover {
    background: #00b3ff;
    box-shadow: 0 8px 20px rgba(0,230,255,0.2);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}
th, td {
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
    vertical-align: top;
}
th {
    background: rgba(0,230,255,0.1);
    color: #00e6ff;
}
tr:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

/* Small tweaks */
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Admin header / footer optional */
.admin-header, .admin-footer {
    text-align: center;
    padding: 1rem 0;
    color: #8fbfc7;
}
.admin-footer {
    border-top: 1px solid rgba(255,255,255,0.02);
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    form {
        max-width: 100%;
    }
    table, th, td {
        font-size: 0.9rem;
    }
}

