
/* Amend position - Teal */
.position-amend {
    background-color: #14b8a6 !important; /* Teal-500 */
    color: #ffffff !important;
}

/* ============================================
   YEAR SESSION SELECTOR
   ============================================ */

.year-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.year-selector label {
    color: white;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.year-selector select {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #4a90d9;
    border-radius: 6px;
    background: white;
    color: #1e3a5f;
    cursor: pointer;
    min-width: 220px;
    transition: all 0.2s ease;
}

.year-selector select:hover {
    border-color: #6ab0ff;
    box-shadow: 0 0 8px rgba(74, 144, 217, 0.4);
}

.year-selector select:focus {
    outline: none;
    border-color: #6ab0ff;
    box-shadow: 0 0 12px rgba(74, 144, 217, 0.6);
}

/* Session status message */
.session-status {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.session-status.pending {
    background: #e3f2fd;
    border-color: #2196f3;
}

.session-status .icon {
    font-size: 24px;
}

.session-status .message {
    color: #333;
    font-size: 14px;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #1e3a5f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 15px;
    color: #1e3a5f;
    font-weight: 600;
}

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

/* ==========================================
   ORG TOOLTIP STYLES
   ========================================== */

/* Tooltip container - any element with data-tooltip */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}

/* Tooltip bubble */
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    white-space: normal;
    width: max-content;
    max-width: 250px;
    text-align: left;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Tooltip arrow */
[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1e293b;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

/* Show tooltip on hover */
[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Position tooltip below on mobile or when near top */
[data-tooltip-position="bottom"]::after {
    bottom: auto;
    top: calc(100% + 8px);
}

[data-tooltip-position="bottom"]::before {
    bottom: auto;
    top: calc(100% + 2px);
    border-top-color: transparent;
    border-bottom-color: #1e293b;
}

/* Org badge with tooltip styling */
.org-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.org-badge[data-tooltip]::after {
    width: 220px;
}

/* Breadcrumb styling - Minimal Transparent */


























