.ta-center {
    text-align: center;
}

.error-message {
    color: red;
}

.stacktrace {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
}

.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-select-dropdown.open {
    display: block;
}

.custom-select-option {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    font-size: 16px;
}

.custom-select-option:hover,
.custom-select-option:focus {
    background-color: #f8f9fa;
    outline: none;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option mark {
    background: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 500;
}

.real-select {
    display: none !important;
}

/* Адаптивность */
@media (max-width: 480px) {
    .custom-select-dropdown {
        max-height: 200px;
        font-size: 14px;
    }

    .custom-select-option {
        padding: 10px 12px;
    }
}