/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 206, 201, 0.2);
    border-radius: 12px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 206, 201, 0.4);
}

/* Glassmorphism */
.glass-panel {
    background: rgba(17, 34, 34, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 206, 201, 0.15);
}

/* Toggle Switch Styles */
#toggle-facilitator:checked~.dot {
    transform: translateX(100%);
    background-color: #FD79A8;
}

#toggle-facilitator:checked~.toggle-bg {
    background-color: rgba(253, 121, 168, 0.2);
    border-color: rgba(253, 121, 168, 0.5);
}

/* Board Layouts */
.board-cols-3>div {
    flex: 1 1 300px;
    min-width: 300px;
    max-width: calc(33.333% - 16px);
}

.board-cols-4>div {
    flex: 1 1 250px;
    min-width: 250px;
    max-width: calc(25% - 18px);
}

/* Cards */
.retro-card {
    transition: all 0.2s ease;
}

.retro-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 206, 201, 0.3);
}

/* Hidden Mode (Blur text) */
.facilitator-hidden .card-content {
    filter: blur(5px);
    opacity: 0.7;
    user-select: none;
}

.facilitator-hidden .card-content:hover {
    filter: blur(0px);
    opacity: 1;
}

/* Input Area Auto-resize */
textarea {
    resize: none;
}