/* Skip Links for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Focus Indicators */
*:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .card {
        border: 1px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Screen Reader Only Text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Keyboard Navigation Indicators */
.keyboard-focus-visible:focus {
    outline: 3px solid #ff6b6b;
    outline-offset: 4px;
}

/* Badge Notify Styles */
.badge-notify {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 11px;
    line-height: 18px;
    background-color: #dc3545;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}

/* Notification Dropdown Styles */
.dropdown-notify {
    min-width: 350px;
    max-height: 400px;
    overflow-y: auto;
}

.notify-list {
    max-height: 300px;
    overflow-y: auto;
}

.notify-title {
    font-size: 1rem;
    font-weight: 600;
}

.notify-desc {
    font-size: 0.875rem;
}

.notify-time {
    font-size: 0.75rem;
}