.brs-horizontal-container {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.brs-flex-form {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.brs-input-box {
    flex: 2;
    min-width: 150px;
}

.brs-input-box.mini {
    flex: 1;
    min-width: 80px;
}

.brs-input-box label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

.brs-select {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}

.brs-submit-horiz {
    background: #0052cc;
    color: #fff;
    border: none;
    height: 45px;
    padding: 0 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.brs-submit-horiz:hover { background: #003d99; }

.brs-info-bar {
    margin-top: 20px;
    padding: 12px;
    background: #e7f3ff;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: #0052cc;
    border: 1px solid #b3d7ff;
}

.brs-user-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

.modal-content input {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}