/* Episode Tracker Styles */

.checkbox-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 12px;
    z-index: 10;
}

.checkbox-circle {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.checkbox-container:hover .checkbox-circle {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-container[data-checked="true"] .checkbox-circle {
    background: #FF6B35;
    border-color: #FF6B35;
}

.checkbox-mark {
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.2s ease;
}

.checkbox-container[data-checked="true"] .checkbox-circle .checkbox-mark {
    opacity: 1;
    transform: scale(1);
}

/* Season checkbox sizing */
.checkbox-container.season-checkbox .checkbox-circle {
    width: 24px;
    height: 24px;
    border-width: 2.5px;
}

.checkbox-container.season-checkbox .checkbox-mark {
    width: 14px;
    height: 12px;
}

/* Episode checkbox sizing */
.checkbox-container.episode-checkbox .checkbox-circle {
    width: 18px;
    height: 18px;
    border-width: 1.5px;
}

.checkbox-container.episode-checkbox .checkbox-mark {
    width: 10px;
    height: 8px;
}
