.modal-form {
    display: none;
}
.modal-success {
    text-align: center;
    padding: 20px;
}
.success-message__text {
    font-size: 18px;
    margin-bottom: 20px;
}
.success-ok-button {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 165%;
    letter-spacing: 0.01em;
    color: var(--text-invert);
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--surface-brand);
    width: 100%;
    border: unset;
}
.form-error.general-error {
    color: #d32f2f;
    background: #ffebee;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f44336;
}
.success-message {
    text-align: center;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-clear {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #999;
    display: none;
    z-index: 10;
}

.select-clear:hover {
    color: #666;
}

.select-input {
    padding-right: 30px !important; /* Место для крестика */
}