html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    overflow-x: hidden;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

a {
    text-decoration: none !important;
}

.select2-container .select2-selection--multiple {
    min-height: 38px; /* match bootstrap form-control height */
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
}

.clock {
    position: relative;
    width: 180px;
    height: 180px;
    border: 4px solid #007446;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    background: #f5f5f5;
}

    .clock .days {
        position: absolute;
        font-size: 22px;
        font-weight: bold;
        color: #333;
        text-align: center;
        z-index: 1; /* behind hand if needed */
    }

    .clock .hand {
        position: absolute;
        width: 4px;
        height: 75px;
        background: red;
        top: 50%;
        left: 50%;
        transform-origin: bottom center;
        transform: translate(-50%, -100%) rotate(0deg);
        animation: rotate-hand 10s linear infinite; /* continuous rotation */
        z-index: 2; /* on top of days */
    }

.big {
    font-size: 42px;
    font-weight: bold;
    color: blue;
    display: block;
    line-height: 1;
    margin-bottom: -6px
}

.small {
    font-size: 14px !important;
    color: #555;
    display: block;
    line-height: 1;
}

.circle-text {
    fill: black;
    font-weight: normal;
}

@keyframes rotate-hand {
    from {
        transform: translate(-50%, -100%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -100%) rotate(360deg);
    }
}

.text-maroon {
    color: rebeccapurple;
}

tbody td, thead th {
    padding: 5px 10px !important; /* default ~12px */
    font-size: 14px; /* optional: make text smaller */
    line-height: 1.2;
}

footer li,
footer li a {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none; /* remove bullets if needed */
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

    .card:hover .fw-bold {
        color: #c2185b !important;
    }

h1, h2, h3,h4, h5, h6 {
    color: #e91e63 !important;
}

.notice-div {
    overflow: hidden; /* keep text inside parent */
    position: relative;
}

.scrolling-notice {
    display: block; /* container just holds the animated content */
    width: 100%;
}

    .scrolling-notice span {
        display: inline-block;
        white-space: nowrap;
        animation: scroll-left 30s linear infinite;
    }

/* Keyframes: move from right to left */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.scrolling-notice:hover span {
    animation-play-state: paused;
}

.page-title {
    font-size: 30px;
    font-weight: 700;
    color: #e91e63;
    text-align: center;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}