/* Custom styles for Healthcare Management System */

/* Add additional spacing for main content */
main.container {
    min-height: calc(100vh - 200px);
}

/* Footer styling */
.footer {
    margin-top: 2rem;
}

/* Important fix for card label display issues after form submission */
.text-muted.small {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Card shadows and hover effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Custom dashboard card styling */
.dashboard-card {
    height: 100%;
    border-radius: 0.5rem;
}

/* User avatar styling */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Login form styling */
.login-container {
    max-width: 400px;
    margin: 0 auto;
}

/* Role badge styling */
.role-badge {
    font-size: 0.8rem;
    padding: 0.4em 0.7em;
}

/* Helper for spacing between icon and text */
.icon-spacing {
    margin-right: 0.5rem;
}

/* Custom button styling */
.btn-icon-only {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
