@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e2e8f0;
    min-height: 100vh;
    padding: 2rem;
}

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

header {
    text-align: center;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 3rem;
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
}

.top-month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.top-month h2 {
    color: #fcd34d;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

input:focus, select:focus {
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.1);
}

button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s transform;
    width: 100%;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
}

.track-container {
    margin-top: 1.5rem;
}

.seller-track {
    margin-bottom: 2rem;
}

.seller-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.track {
    background: rgba(255, 255, 255, 0.1);
    height: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.progress {
    background: linear-gradient(90deg, #10b981, #34d399);
    height: 100%;
    border-radius: 15px;
    width: 0%;
    transition: width 1s ease-in-out;
}

.car {
    position: absolute;
    top: -3px;
    font-size: 1.8rem;
    transition: left 1s ease-in-out;
    transform: translateX(-50%);
}

.coupons {
    color: #fcd34d;
    font-weight: 800;
}

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

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

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-table th {
    background: rgba(255,255,255,0.05);
}

.btn-approve {
    background: #10b981;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: auto;
}

.btn-reject {
    background: #ef4444;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: auto;
}
