html, body {
    background: black;
    color: white;
}

.card {
    color: black;
}

h1, .white {
    color: white
}

.bg-white {
    background: white;
}

.disabledBox {
    cursor: not-allowed;
}
.pirate-title {
    font-family: 'Pirata One', cursive;
    color: #d4af37; /* classic gold tone */
    text-shadow:
            0 0 5px #000,
            2px 2px 4px rgba(0,0,0,0.7),
            0 0 15px rgba(255,215,0,0.6);
    font-size: 2.5rem;
    letter-spacing: 2px;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.pirate-title:hover {
    transform: scale(1.05);
    text-shadow:
            0 0 15px rgba(255,223,0,0.9),
            0 0 25px rgba(255,215,0,0.6);
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
    margin-right: 8px;
}
.switch input {display:none;}
.slider {
    position: absolute;
    cursor: pointer;
    background-color: #dc3545;
    border-radius: 34px;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px; width: 20px;
    left: 3px; bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}
input:checked + .slider {
    background-color: #28a745;
}
input:checked + .slider:before {
    transform: translateX(26px);
}
.label-text {
    font-weight: 600;
    margin-left: 6px;
}



.eyeIcons {
    cursor: pointer;
}

.hidden {
    display: none;
}

.blur-effect {
    filter: blur(5px);
}

.img_placeholder { position: relative; background-color:black;}
.img_placeholder img { display:block; width:100%; height:auto; }
.img_placeholder img.incoming {
    position: absolute;
    inset: 0;
    opacity: 0;          /* will fade to 1 */
    z-index: 2;          /* make sure it’s on top while fading */
}


.blur-effect-less img {
    height: 110%;
}

.blur-effect-less {
    filter: blur(2px);
}

.blurmeLess {
    overflow: hidden;
}

.modal-dialog {
    color: black;
}

.smooth-container {
    position: relative;
}

.clients-pane {
    transition: opacity 180ms ease;
    will-change: opacity;
}


.bot-shot {
    width: 100%;
    transition: opacity 0.35s ease-in-out;
    display: block;
}

.bot-shot.new-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
}


.bot-shot {
    width: 100%;
    display: block;
}

.fade-overlay {
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.clients-pane.is-visible {
    opacity: 1;
}

.clients-pane:not(.is-visible) {
    opacity: 0;
    position: absolute;
    inset: 0;
}

/* Lock height during swaps to avoid big reflows */
.smooth-container.height-locked {
    height: var(--lock-h);
}