/* MyBookings Page Styles */

/* Total amount text */
.mybookings-total-amount {
    color: var(--theme-accent-red) !important;
    font-weight: 700 !important;
}

/* Cancel buttons — solid red background with white text, regardless of theme overrides */
.cancel-btn-red.mud-button-root {
    background-color: #f44336 !important;
    border-color: #f44336 !important;
    color: #ffffff !important;
}
.cancel-btn-red.mud-button-root .mud-button-label,
.cancel-btn-red.mud-button-root .mud-typography,
.cancel-btn-red.mud-button-root .mud-icon-root,
.cancel-btn-red.mud-button-root span {
    color: #ffffff !important;
}
.cancel-btn-red.mud-button-root:hover {
    background-color: #d32f2f !important;
    border-color: #d32f2f !important;
}

/* Booking card — subtle lift on hover */
.mybookings-card {
    transition: transform .18s ease, box-shadow .18s ease;
}
.mybookings-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35) !important;
}

/* Keep the poster banner from bleeding past the rounded corners */
.mybookings-card .mud-card-media {
    background-size: cover;
    background-position: center top;
}

