/**
 * File: assets/css/style.css
 * Future Ticketing styles
 */

/* Bootstrap Error Banner */
#ft-bootstrap-error {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #7f1d1d;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ft-bootstrap-error__icon {
    font-size: 20px;
    flex-shrink: 0;
}

.ft-bootstrap-error__msg {
    flex: 1;
}

.ft-bootstrap-error__refresh {
    flex-shrink: 0;
    padding: 6px 14px;
    background: #fff;
    color: #7f1d1d;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ft-bootstrap-error__refresh:hover {
    background: #f3f4f6;
}

.ft-bootstrap-error__close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.8;
}

.ft-bootstrap-error__close:hover {
    opacity: 1;
}