#countdown-timer {
    background: linear-gradient(90deg, #223E0E, #66BC29);
    color: #000;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
}

/* full clickable area */
#countdown-timer a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap; /* desktop – single row */
}

/* the message */
#countdown-timer .countdown-message {
    display: inline-block;
}

/* timer */
#timer {
    font-weight: 700;
}

/* -------------------------
   📱 MOBILE: FORCE 2 ROWS
   ------------------------- */
@media (max-width: 767px) {

    #countdown-timer a {
        flex-wrap: wrap; /* allow 2 rows */
        gap: 4px;
    }

    /* FORCE ROW 1: message stays one line */
    #countdown-timer .countdown-message {
        white-space: nowrap; /* prevents wrapping to 2 lines */
        width: 100%;         /* own row */
        text-align: center;
    }

    /* FORCE ROW 2: timer is its own row */
    #timer {
        width: 100%;
        text-align: center;
    }
}

.plate-card.tas-plates {
    background: 
        /* black overlay at 25% opacity */
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        /* lighter green gradient */
        linear-gradient(90deg, #3a5e19, #8fd35f);
    color: #fff; /* high contrast text */
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plate-card.tas-plates .btn-primary {
    background-color: #223E0E; /* solid dark green */
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.plate-card.tas-plates .btn-primary:hover {
    background-color: #1a2f0a;
    transform: translateY(-2px);
}

.reserve-now-button {
    background-color: #223E0E; /* solid dark green */
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.reserve-now-button:hover {
    background-color: #1a2f0a;
    transform: translateY(-2px);
}