/* ===============================
   Defence Eligibility Pro Styles
   =============================== */

#dep-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#dep-form input,
#dep-form select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

#dep-form input:focus,
#dep-form select:focus {
    border-color: #1e73be;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30,115,190,0.1);
}

#dep-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #1e73be, #155a96);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#dep-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,115,190,0.3);
}

#dep-response {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #28a745;
}


/* ===============================
   Admin Dashboard Cards
   =============================== */

.dep-dashboard-cards {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.dep-card {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.dep-card h2 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dep-card h1 {
    font-size: 32px;
    margin: 0;
    color: #1e73be;
}


/* ===============================
   Table Styling
   =============================== */

.widefat th {
    background: #f5f7fa;
    font-weight: 600;
}

.widefat td, 
.widefat th {
    padding: 12px 10px;
}

.widefat tr:hover {
    background: #f9f9f9;
}


/* ===============================
   Responsive
   =============================== */

@media (max-width: 768px) {
    .dep-dashboard-cards {
        flex-direction: column;
    }

    #dep-form {
        padding: 20px;
    }
}