body {
    background: #222222;
    color: #E1E1E1;
}

p, h3, h2, h1, h4, h5, h6, span {
    color: #E1E1E1;
    text-decoration: none;
}

.text-edrenbaton {
    color: #9e9e9e !important;
}

.btn {
    --bs-btn-color: white !important;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    color: white !important;
}

.btn:hover {
    color: white !important;
    background-color: #9e9e9e !important;
}

.card {
    background: #1a1a1a !important;
    color: var(--main-color);
    -webkit-transition: all .0s !important;
    -o-transition: all .0s !important;
    margin-bottom: 30px;
}

.row {
    text-align: center;
}

.modal-content {
    color: #9e9e9e !important;
    background-color: #3D3D3D !important;
    border: 1px solid #222222 !important;
}

.modal-header {
    border-bottom: var(--bs-modal-header-border-width) solid #515151 !important;
}

.right-alignment {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #9e9e9e !important;
}

.form-control {
    max-width: 900px;
    padding: 14px 20px;
    background: #1a1a1a !important;
    color: #e0e0e0 !important;
    border: 1px solid #333;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Segoe UI', Arial, sans-serif;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.form-control::placeholder {
    color: #666;
}

.form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 2px rgba(187, 134, 252, 0.2);
}

.form-control:hover {
    background: #222;
}

/* Минималистичная полоса прокрутки */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color-dark);
}

:root {
    --main-color: #b666d2;
    --main-color-dark: #9c4dcc;
}