/* Accolade Modal Styles */
.exv-accolade-modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.exv-accolade-modal[style*="display: block"],
.exv-accolade-modal[style*="display:flex"],
.exv-accolade-modal[style*="display: flex"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.exv-accolade-modal-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px) brightness(0.6);
    -webkit-backdrop-filter: blur(10px) brightness(0.6);
}

.exv-accolade-modal-content {
    position: relative;
    z-index: 20001;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border-white);
    box-shadow: 
        0 0 50px rgba(0, 0, 0, 0.8),
        inset 0 0 60px rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.exv-accolade-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(20, 20, 20, 0.5);
    border-bottom: 1px solid var(--border-white);
    flex-shrink: 0;
}

.exv-accolade-modal-header .terminal-dots {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.exv-accolade-modal-header .terminal-text {
    flex: 1;
}

.exv-accolade-modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-white);
    color: var(--accent-white);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    font-weight: 300;
}

.exv-accolade-modal-close:hover {
    border-color: var(--accent-white);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.exv-accolade-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

/* Custom scrollbar for accolade modal */
.exv-accolade-modal-body::-webkit-scrollbar {
    width: 8px;
}

.exv-accolade-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.exv-accolade-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.exv-accolade-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Custom scrollbar for profile modal - cleaner style */
.exv-profile-modal-content::-webkit-scrollbar {
    width: 6px;
}

.exv-profile-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.exv-profile-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.exv-profile-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Accolade item hover effects */
.exv-accolade-item:hover {
    border-color: var(--accent-white) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Accolade modal users list scrollbar */
#exvAccoladeModalUsers::-webkit-scrollbar {
    width: 6px;
}

#exvAccoladeModalUsers::-webkit-scrollbar-track {
    background: transparent;
}

#exvAccoladeModalUsers::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

#exvAccoladeModalUsers::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

