html,body{
    font-family: 'Gotham', sans-serif !important;
}

.title{
    font-size: 1.7rem !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
    
}
.subtitle{
    font-size: 1.25rem !important;
    font-weight: 500 !important;
}
.has-font-weight-black{
    font-weight: 700 !important;
}

.notification {
    position: relative;
}

.info-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon .icon {
    color: white;
    font-size: 0.8rem;
}

.payments-info-message {
    line-height: 1.4;
    display: block;
    margin: 0 auto 1rem auto;
    border-radius: 0.4rem;
    width: 90%;
    padding-left: 2rem;
    position: relative;
}

.payments-info-message .icon {
    margin-right: 0.5rem;
    position: absolute;
    top: 1rem;
    left: 0.5rem;
}

.payments-info-text {
    text-align: left;
    white-space: pre-wrap;
    margin: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* =============================================
   Valet pages – mobile-first styling
   ============================================= */

.valet-page .section {
    padding: 1.5rem 1rem;
}

.valet-page .card {
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.valet-page .card-content {
    padding: 1.25rem;
}

.valet-search-input {
    font-size: 1.1rem !important;
    height: 3rem !important;
    border-radius: 0.5rem !important;
}

.valet-search-btn {
    height: 3rem !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
}

.valet-detail-value {
    font-size: 1.05rem !important;
    word-break: break-word;
}

.valet-detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #999;
    margin-bottom: 0.15rem;
}

.valet-status-tag {
    font-size: 0.95rem !important;
    padding: 0.4em 1em !important;
    border-radius: 999px !important;
}

.valet-ticket-number {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
}

@media screen and (max-width: 768px) {
    .valet-page .section {
        padding: 1rem 0.75rem;
    }

    .valet-page .card-content {
        padding: 1rem;
    }

    .valet-page .title.is-3 {
        font-size: 1.4rem !important;
    }

    .valet-page .subtitle.is-5 {
        font-size: 1rem !important;
    }

    .valet-search-form .field.has-addons {
        flex-direction: column;
        align-items: stretch;
    }

    .valet-search-form .field.has-addons .control {
        width: 100%;
    }

    .valet-search-form .field.has-addons .control.is-expanded {
        max-width: none !important;
        margin-bottom: 0.5rem;
    }

    .valet-search-input {
        border-radius: 0.5rem !important;
    }

    .valet-search-btn {
        width: 100%;
        border-radius: 0.5rem !important;
    }

    .valet-detail-grid .column {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .valet-actions .buttons {
        flex-direction: column;
    }

    .valet-actions .buttons .button,
    .valet-actions .buttons form {
        width: 100%;
    }

    .valet-actions .buttons .button {
        margin-bottom: 0.5rem !important;
        justify-content: center;
    }

    .valet-pay-panel {
        margin: 0.75rem 0 !important;
        border-radius: 0.75rem;
        overflow: hidden;
    }

    .valet-pay-panel .panel-heading {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }

    .valet-pay-panel .panel-block {
        padding: 0.75rem 1rem;
    }

    .valet-pay-panel .pay-with-new-card-container .button {
        font-size: 1rem;
        height: 3rem !important;
        border-radius: 0.5rem !important;
    }

    .valet-pay-column {
        width: 100% !important;
        flex: none !important;
        padding: 0 !important;
    }
}

/* Change icon color based on notification type */
.notification.is-danger .info-icon {
    background-color: #f14668;
}

.notification.is-warning .info-icon {
    background-color: #ffe08a;
}

.notification.is-success .info-icon {
    background-color: #48c78e;
}


