.osnaboard-pricing-select {
    font-size: 1.1em;
    min-height: 3.2em;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fafbfc;
    color: #333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 0.7em 1.2em;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.osnaboard-pricing-select:focus,
.osnaboard-pricing-select:hover {
    border-color: #7e57c2;
    box-shadow: 0 2px 8px rgba(126, 87, 194, 0.09);
    outline: none;
    background: #fff;
}

.osnaboard-pricing-select option {
    padding: 0.6em 1em;
    font-size: 1em;
    background: #fff;
    color: #444;
}

.osnaboard-pricing-select option:checked {
    background: #ede7f6;
    color: #512da8;
}

.reset-square-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex: 0 0 44px;
    box-sizing: border-box;
    padding: 0;
    background: #e74c3c !important;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background-color .2s ease, transform .05s ease-in-out;
}

.reset-square-btn:hover {
    background: #c0392b !important;
}

.reset-square-btn:active {
    transform: scale(0.98);
}

.reset-square-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, .25);
}

.reset-square-btn>span {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 18px;
    color: #fff;
}

/* Ensure buttons align horizontally without wrapping and avoid full-width btn */
.booking-summary-row .stg-col-4 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
}

.booking-actions {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.booking-actions .btn {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    white-space: nowrap;
}

.booking-actions>* {
    flex: 0 0 auto !important;
}

/* Ensure Bootstrap d-none can hide the reset button */
.booking-actions .reset-square-btn.d-none {
    display: none !important;
}