.admin-control-room {
    padding:60px;
    background:#0f172a;
    color:white;
}

.admin-cards {
    display:flex;
    gap:30px;
    margin-bottom:40px;
}

.card {
    background:#1e293b;
    padding:30px;
    border-radius:12px;
    flex:1;
    text-align:center;
}

.card p {
    font-size:32px;
    font-weight:bold;
}

.ward-table {
    width:100%;
    background:#1e293b;
    border-collapse:collapse;
}

.ward-table th,
.ward-table td {
    padding:12px;
    border-bottom:1px solid #334155;
}

.analytics-card {
    background: #0f172a;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 0 30px rgba(0, 140, 255, 0.2);
}

.analytics-card h3 {
    color: #00d9ff;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

#wardHeatmap {
    background: #0b1220;
    padding: 20px;
    border-radius: 10px;
}

.victory-meter {
    text-align:center;
    margin-top:30px;
}

.victory-circle {
    width:200px;
    height:200px;
    border-radius:50%;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:bold;
    color:#fff;
    background:conic-gradient(
        #00f0ff 0deg,
        #6c5ce7 120deg,
        #111 0deg
    );
    box-shadow:0 0 25px rgba(0,255,255,0.5);
    transition:all 1s ease;
}

.logo {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 12px 0;
    background: none;
    transition: color 0.3s;
    display: inline-block;
}

.logo:hover {
    color: #0073aa;
    text-shadow: none;
}

.coordinator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.coordinator-card {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.coordinator-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.civic-form {
    max-width: 600px;
    margin-top: 30px;
}

.civic-form input,
.civic-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.civic-form textarea {
    min-height: 120px;
}

.civic-form input:focus,
.civic-form textarea:focus {
    border-color: #0073aa;
    outline: none;
}

.success {
    background: #e6f7ed;
    padding: 15px;
    border-left: 5px solid #00aa55;
    margin-bottom: 20px;
}

.feedback-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.feedback-card {
    min-width: 280px;
    flex-shrink: 0;
}

.feedback-card:hover {
    transform: translateY(-6px);
}

.feedback-card h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.ward-tag {
    display: inline-block;
    font-size: 12px;
    background: #0073aa;
    color: #fff;
    padding: 4px 8px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.feedback-card p {
    font-size: 14px;
    line-height: 1.6;
}



.counter-card {
    background: linear-gradient(135deg, #001f3f, #0073aa);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.counter-card:hover {
    transform: translateY(-6px);
}

.timeline {
    position: relative;
    margin: 50px 0;
    padding-left: 30px;
    border-left: 3px solid #0073aa;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0073aa;
}

.timeline-date {
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 5px;
}

.timeline-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

/* Status Colors */

.timeline-item.completed::before {
    background: #28a745;
}

.timeline-item.ongoing::before {
    background: #ffc107;
}

.timeline-item.planned::before {
    background: #0073aa;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.card h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.card.completed h3 {
    color: #28a745;
}

.card.ongoing h3 {
    color: #ffc107;
}

.card.planned h3 {
    color: #0073aa;
}

.progress-wrapper {
    background: #eee;
    border-radius: 50px;
    overflow: hidden;
    height: 30px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0073aa, #28a745);
    color: white;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}