/* Shared CSS for Dancell Landing Page */

body {
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px), radial-gradient(#e2e8f0 1.5px, #f8fafc 1.5px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
}

/* Mouse Spotlight Effect */
.spotlight-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(185, 28, 28, 0.05), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.spotlight-btn:hover::after {
    opacity: 1;
}

/* Dancell Accent Left Indicator Bar */
.btn-link-custom::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 0;
    width: 4px;
    background-color: #b91c1c;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.btn-link-custom:hover::before {
    opacity: 1;
    top: 15%;
    height: 70%;
}

.btn-link-custom:active::before {
    opacity: 1;
    top: 10%;
    height: 80%;
    background-color: #dc2626;
}

/* Custom Scrollbar for Branch list */
.branches-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.branches-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.branches-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.branches-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
