/* Document Management System Custom Styles */

body {
    font-family: 'Montserrat', sans-serif;
}

.brand-text {
    font-weight: 600;
}

.card {
    border-radius: 0.428rem;
    box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
}

.btn-primary {
    background-color: #7367f0;
    border-color: #7367f0;
}

.btn-primary:hover {
    background-color: #5e50ee;
    border-color: #5e50ee;
}

.text-primary {
    color: #7367f0 !important;
}

.bg-primary {
    background-color: #7367f0 !important;
}

.bg-success {
    background-color: #28c76f !important;
}

.bg-info {
    background-color: #00cfe8 !important;
}

/* Custom dashboard cards */
.dashboard-card {
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

/* Profile image styling */
.uploadedAvatar {
    border: 3px solid #7367f0;
}

/* Form styling */
.form-control:focus {
    border-color: #7367f0;
    box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.25);
}

/* Alert styling */
.alert {
    border-radius: 0.428rem;
}

/* Navigation styling */
.navbar-brand {
    font-weight: 600;
}

/* Footer styling */
.footer {
    border-top: 1px solid #d8d6de;
} 