/**
 * Smart University Ecosystem - Custom Styles
 */

.brand-link .brand-image {
    font-size: 1.5rem;
    margin-left: 0.8rem;
    margin-right: 0.5rem;
    margin-top: -3px;
    line-height: 0.8;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.small-box {
    border-radius: 10px;
}

.card {
    border-radius: 8px;
    box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
}

.modal-content {
    border-radius: 12px;
}

.badge {
    font-size: 85%;
    padding: 0.4em 0.6em;
}

/* Анимация загрузки */
.loading {
    position: relative;
}
.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Face ID индикатор */
.face-id-indicator {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.face-id-success { background: #28a745; color: white; }
.face-id-error { background: #dc3545; color: white; }
.face-id-pending { background: #ffc107; color: #000; }
