/**
 * Admin Registration System - Custom Styles
 * Clean, professional, mobile-responsive
 */

/* Login page centering */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-container .card {
    border: none;
    border-radius: 12px;
}

/* General spacing */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Card styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.card .card-body {
    padding: 1.5rem;
}

/* Dashboard cards */
.dashboard-card {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashboard-card .btn {
    margin-top: 0.5rem;
}

/* Badge styling */
.badge-count {
    font-size: 1.5rem;
    padding: 0.5rem 0.75rem;
}

/* Form styling */
.form-label {
    font-weight: 500;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Table styling */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

/* Alert styling */
.alert {
    border-radius: 8px;
}

/* Footer */
.footer {
    border-top: 1px solid #dee2e6;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.pagination .page-link {
    border-radius: 6px !important;
    margin: 0 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
    }
    
    .dashboard-card {
        min-height: auto;
    }
}
