body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Form styling for login page */
.login-form .form-group {
    margin-bottom: 1rem;
}

.login-form .form-group label {
    display: block;
    margin-bottom: .5rem;
    font-weight: bold;
}

.login-form .form-group input {
    width: 100%;
    padding: .75rem;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    box-sizing: border-box;
}

.login-form .btn-block {
    width: 100%;
}

/* Table styling */
.table th,
.table td {
    vertical-align: middle;
}

.table thead th {
    background-color: #e9ecef;
}

/* Button styling */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: .5rem;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    box-shadow: 0 6px 8px rgba(0, 123, 255, 0.3);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    border-radius: .5rem;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    box-shadow: 0 6px 8px rgba(40, 167, 69, 0.3);
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    border-radius: .5rem;
    box-shadow: 0 4px 6px rgba(23, 162, 184, 0.2);
    transition: all 0.3s ease;
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
    box-shadow: 0 6px 8px rgba(23, 162, 184, 0.3);
}

.alert {
    border-radius: .5rem;
}