﻿
/* Scroll container */
.scroll-containerN {
    display: flex;
    overflow-x: auto; /* ✅ must be auto */
    overflow-y: hidden;
    gap: 10px;
    padding: 5px;
    white-space: nowrap; /* ✅ keep this */
    -webkit-overflow-scrolling: touch; /* smooth mobile scroll *
}

.scroll-containerN::-webkit-scrollbar {
    display: none;
}
.scroll-containerS {
    display: flex;
    overflow-x: auto; /* ✅ must be auto */
    overflow-y: hidden;
    gap: 10px;
    padding: 5px;
    white-space: nowrap; /* ✅ keep this */
    -webkit-overflow-scrolling: touch; /* smooth mobile scroll */
}

.scroll-containerS::-webkit-scrollbar {
    display: none;
}

/* Square buttons */

.buttR {
    flex: 0 0 auto;
    min-width: 95px;
    max-width: 95px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
    background: linear-gradient(135deg, #f0e0e0, #cfcfcf);
    color: #333;
    border-radius: 14px;
    border: 1px solid #d0d0d0;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all 0.2s ease;
}

    /* Remove default anchor style */
.buttR a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    white-space: normal;
    word-break: break-word;
}
    /* Hover effect (PC) */
/* Desktop hover */
.buttR:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Mobile tap */
.buttR:active {
    transform: scale(0.96);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
/* Square buttons - small*/
.buttS {
    flex: 0 0 auto;
    min-width: 60px;
    max-width: 65px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
    background: linear-gradient(135deg, #f0e0e0, #cfcfcf);
    color: #111111;
    border-radius: 12px;
    border: 1px solid #d0d0d0;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all 0.2s ease;
}

    /* Remove default anchor style */
    .buttS a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        color: #111111;
        text-decoration: none;
    }

    /* Hover effect (PC) */
    .buttS:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.25);
    }

    /* Active (mobile tap feel) */
    .buttS:active {
        transform: scale(0.95);
    }
.primary-btn {
    background: linear-gradient(135deg, #6a85b6, #bac8e0);
    color: #1a1a1a;
}
@keyframes blinkEffect {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.blink-on-load {
    animation: blinkEffect 0.6s ease-in-out 4; /* runs 4 times */
}
.blink-on-load-slow {
    animation: blinkEffect 01.0s ease-in-out 1; /* runs 2 times */
}


/* Mobile responsive */
@media (max-width: 600px) {
    .buttR {
        min-width: 75px;
        height: 65px;
        font-size: 12px;
    }
    .buttS {
        min-width: 50px;
        height: 45px;
    }


}


