/* Модальные окна */
.modal-content {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.modal-header {
    border-bottom: 1px solid var(--border-light);
}

.modal-footer {
    border-top: 1px solid var(--border-light);
}

.transaction-details {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.transaction-details p {
    margin-bottom: 0.5rem;
}

.transaction-details p:last-child {
    margin-bottom: 0;
}

.form-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Убираем стандартные стили для модальных окон в темной теме */
[data-bs-theme="dark"] .modal-content {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

[data-bs-theme="dark"] .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Фикс прыжков при открытии модального окна */
html {
    overflow-y: scroll !important;
}

body {
    padding-right: 0 !important;
}

.modal {
    padding-right: 0 !important;
}

.modal-open {
    overflow-y: scroll !important;
    padding-right: 0 !important;
} 