/* ===============================================
   EVE AI - Components Stylesheet
   =============================================== */

/* Persona Buttons */
.persona-btn {
    transition: all 0.3s ease;
    opacity: 0.85;
    filter: grayscale(100%) brightness(1.2);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .persona-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.persona-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
}

.persona-btn.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
    background: #fff;
    color: #000;
    border-color: #fff;
}

.dark .persona-btn.active {
    background: #fff;
    color: #000;
}

.persona-btn .indicator {
    transition: all 0.3s;
}

.persona-btn.active .indicator {
    box-shadow: 0 0 15px currentColor;
}

/* Play/Pause Control Button */
.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    z-index: 60;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
