/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: 700;
}

/* Card Styles */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 0.25rem;
}

.btn {
    border-radius: 0.25rem;
}

/* Table Styles */
.table {
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Dashboard Stats */
.card-stat {
    transition: transform 0.2s;
}

.card-stat:hover {
    transform: translateY(-5px);
}

/* Login Page */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 50px;
}

.login-card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
    }
    
    .card-stat {
        margin-bottom: 1rem;
    }
}