/* Portal Page Styles */

/* Card borders - Blue borders to match the design */
.card {
    border: 2px solid #6366F1 !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.card-header {
    background-color: white;
    border-bottom: 1px solid #E5E7EB;
    padding: 1rem 1.25rem;
    border-radius: 12px 12px 0 0;
}

.card-header h6,
.card-header h5 {
    color: #032975 !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
}

/* Stat bar widths - These should be set dynamically via JavaScript instead of inline styles */
.stat-bar-fill {
    transition: width 0.5s ease;
}

/* Empty state icon */
.empty-state-icon {
    font-size: 3rem;
}

/* Additional portal-specific styles */
.btn-primary {
    background-color: #6366F1 !important;
    border-color: #6366F1 !important;
    color: white !important;
    font-weight: 500 !important;
}

.btn-primary:hover {
    background-color: #5558E8 !important;
    border-color: #5558E8 !important;
}

/* Outline buttons with purple text */
.btn-outline-primary {
    color: #6366F1 !important;
    border: 2px solid #6366F1 !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover {
    background-color: #6366F1 !important;
    color: white !important;
}

/* Quick Stats Card Specific Styles */
.quick-stats-card .card-header {
    background-color: #032975 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.quick-stats-card .card-header h5 {
    color: white !important;
}

/* Progress bars */
.progress {
    background-color: #E5E7EB !important;
    border-radius: 8px !important;
}

.progress-bar {
    background-color: #6366F1 !important;
}