/* Unimarconi Teacher Linker - Frontend Styles */

.teacher {
    /* display: inline-block;
    padding: 8px 16px;
    margin: 4px;
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.teacher:hover {
    /*background: linear-gradient(135deg, #005177 0%, #003d5c 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);*/
}

.teacher:focus {
    /*outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.3);*/
}

.teacher.course-detail-teacher-content {
    /*background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    border-left: 4px solid #ffffff;*/
}

.teacher.course-detail-teacher-content:hover {
    /*background: linear-gradient(135deg, #1e3a5f 0%, #0f1d2f 100%);*/
}

/* Responsive design */
@media (max-width: 768px) {
    .teacher {
        /*display: block;*/
        /*margin: 8px 0;*/
        /*text-align: center;*/
        /*padding: 12px 16px;*/
    }
}

/* Accessibility improvements */
.teacher:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Loading state */
.teacher.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.teacher.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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