/* Mövcud admin panel dizaynı saxlanılır */

body.admin-bg {
    background: linear-gradient(120deg, #e0e7ff 0%, #f4f6fb 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.admin-container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 28px 24px 28px;
}
.admin-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #e0e6ed;
    margin-bottom: 24px;
    padding-bottom: 16px;
}
.admin-header h1 {
    font-size: 2rem;
    color: #2d3a4b;
    margin: 0 0 8px 0;
}
.admin-user {
    font-size: 1rem;
    color: #4b5c6b;
    display: flex;
    gap: 24px;
}
.admin-login-time {
    font-size: 0.95rem;
    color: #7a869a;
}
.admin-menu {
    display: flex;
    gap: 16px;
    margin: 24px 0 24px 0;
}
.admin-btn {
    background: #3b82f6;
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(59,130,246,0.08);
    cursor: pointer;
    outline: none;
    font-weight: 500;
}
.admin-btn:hover {
    background: #2563eb;
    box-shadow: 0 4px 16px rgba(59,130,246,0.15);
}
.admin-logout {
    background: #ef4444;
}
.admin-logout:hover {
    background: #b91c1c;
}
.admin-content {
    margin-top: 16px;
    background: #f9fafb;
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.admin-content h2 {
    margin-top: 0;
    color: #2563eb;
}
.admin-content p {
    color: #4b5c6b;
    font-size: 1.08rem;
}

/* Monitor üçün əlavə dizayn */
.monitor-container {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 32px 28px 24px 28px;
}
.monitor-title {
    text-align: center;
    font-size: 2.1rem;
    color: #2563eb;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.monitor-form {
    text-align: center;
    margin-bottom: 28px;
}
.monitor-table {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px #e0e6ed;
    background: #f9fafb;
}
.monitor-table th, .monitor-table td {
    padding: 14px 18px;
    font-size: 1.1rem;
}
.monitor-table th {
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
}
.monitor-table tr:nth-child(even) { background: #f2f6fc; }
.monitor-status {
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 8px;
    display: inline-block;
}
.status-on { background: #d1fae5; color: #059669; }
.status-off { background: #fee2e2; color: #b91c1c; }
.monitor-empty {
    text-align: center;
    color: #7a869a;
    font-size: 1.1rem;
    padding: 24px 0;
}
@media (max-width: 700px) {
    .monitor-container, .admin-container { padding: 10px 2vw; }
    .monitor-title, .admin-header h1 { font-size: 1.3rem; }
    .monitor-table th, .monitor-table td { padding: 8px 4px; font-size: 0.98rem; }
} 

/* Mövcud kod saxlanılır */

.admin-stats {
    display: flex;
    gap: 24px;
    margin: 24px 0 16px 0;
    flex-wrap: wrap;
}
.admin-stat-card {
    background: #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.07);
    padding: 18px 28px 14px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    min-height: 90px;
    flex: 1 1 120px;
    transition: box-shadow 0.2s, background 0.2s;
}
.admin-stat-card:hover {
    background: #e0e7ff;
    box-shadow: 0 4px 16px rgba(59,130,246,0.13);
}
.admin-stat-icon {
    font-size: 2.2rem;
    color: #2563eb;
    margin-bottom: 8px;
}
.admin-stat-label {
    font-size: 1.08rem;
    color: #374151;
    font-weight: 500;
}
@media (max-width: 700px) {
    .admin-stats { flex-direction: column; gap: 12px; }
    .admin-stat-card { min-width: 0; padding: 12px 10px; }
} 