.br-error {
    color: red;
    margin-bottom: 10px;
}

.br-success {
    color: green;
    font-weight: bold;
    margin-bottom: 10px;
}

form label {
    display: block;
    margin-bottom: 10px;
}

form input, form select {
    width: 100%;
    padding: 8px;
}

.badge {
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
}

.badge-žiadosť {
    background-color: #0073aa;
}

.badge-potvrdený {
    background-color: #46b450;
}

.badge-zrušený {
    background-color: #dc3232;
}

.br-success {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 12px;
    border-left: 4px solid #3c763d;
    margin-top: 20px;
}

.br-error {
    background-color: #f2dede;
    color: #a94442;
    padding: 12px;
    border-left: 4px solid #a94442;
    margin-top: 20px;
}

#br-reg-form {
    max-width: 500px;
    margin: 0 auto;
}

#br-submit-btn {
    background-color: #33917d;
    color: white;
    border: none;
    padding: 10px 24px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#br-submit-btn:disabled {
    background-color: #a0b8b1;
    cursor: not-allowed;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid white;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}