.gcc-calculator .number_of_guests {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.gcc-calculator .guest-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.gcc-calculator .guest-selector button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    touch-action: manipulation; /* Prevents zooming on double-tap */
    outline: none;              /* Removes default focus outline */
    user-select: none;          /* Prevents text selection */
    transform: scale(1);        /* Ensures no scale effect on click */
    transition: background-color 0.3s ease; /* Smooth color change */
}

.gcc-calculator .guest-selector button:focus {
    outline: none;              /* Ensures focus doesn’t show zoom outline */
}

.gcc-calculator .guest-selector input {
    width: 150px;
    text-align: center;
    font-size: 16px;
	border-color: #cfcfcf;
}

.gcc-calculator #price_display {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
}
.gcc-calculator #calculate_button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
}

.gcc-total-price span.price {
    color: red;
}

.gcc-total-price {
    padding: 20px 0px;
    font-size: 18px;
    font-weight: bold;
}

a.book-now-link {
    padding: 11px 35px;
    background-color: #50cbf8;
    color: #ffffff;
    border: 2px solid #50cbf8;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.book-now-link:hover {
    background-color: transparent;
    color: #50cbf8;
    border-color: #50cbf8;
    cursor: pointer;
}

.book-now-link:focus,
.book-now-link:active {
    background-color: transparent;
    color: #50cbfb;
    outline: none;
    border-color: #50cbfb;
}

