/* Custom styles for User Management System */

/* Global Styles */
body {
    background-color: var(--bs-dark-bg-subtle);
}

/* Card Styles */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Table Styles */
.table th {
    font-weight: 600;
    border-top: none;
}

/* Form Styles */
label {
    font-weight: 500;
}

/* Button Styles */
.btn {
    font-weight: 500;
}

/* Alert Styles */
.alert {
    border-radius: 0.25rem;
}

/* Footer Styles */
footer {
    margin-top: auto;
}

/* Dashboard specific styles */
.dashboard-stats {
    background-color: var(--bs-primary-bg-subtle);
    border-radius: 0.25rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-stats h3 {
    margin-bottom: 0.5rem;
    color: var(--bs-primary);
}

/* Login page specific styles */
.login-card {
    max-width: 400px;
    margin: 5rem auto;
}

/* User folder path display */
.folder-path {
    font-family: monospace;
    background-color: var(--bs-dark-bg-subtle);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-sm-block {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
