/* Custom styles for Multi-Agent Admissions System */

/* Common utility classes */
.feather-small {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feather-large {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Card hover effect */
.card {
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Student profile cards on enrollment page */
.student-card {
    transition: transform 0.2s ease;
}

.student-card:hover {
    transform: translateY(-5px);
}

/* Custom accordion styling */
.accordion-button:not(.collapsed) {
    background-color: var(--bs-secondary-bg);
    color: var(--bs-body-color);
}

/* Status badges */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Dashboard card customizations */
.stat-card {
    border-left: 4px solid;
}

.stat-card.bg-success-subtle {
    border-left-color: var(--bs-success);
}

.stat-card.bg-info-subtle {
    border-left-color: var(--bs-info);
}

.stat-card.bg-warning-subtle {
    border-left-color: var(--bs-warning);
}

.stat-card.bg-primary-subtle {
    border-left-color: var(--bs-primary);
}

/* Navbar customizations */
.navbar .nav-link.active {
    font-weight: 500;
    position: relative;
}

.navbar .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.5rem;
    right: 0.5rem;
    height: 2px;
    background-color: var(--bs-primary);
}

/* Custom feedback form styling */
.satisfaction-rating {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

/* Footer styling */
.footer {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--bs-border-color);
}

/* Responsive table adjustments */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.85rem;
    }
    
    .table-responsive th,
    .table-responsive td {
        padding: 0.5rem;
    }
    
    .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
}

/* Tooltip customization */
.tooltip {
    font-size: 0.85rem;
}

/* Custom form control focus state */
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Modal animations */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: none;
}
