/* Стили для меню */

.menu-list {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
    font-size: 16px;
    color: #333;
}

.menu-item:hover {
    background: #f5f5f5;
}

.menu-item i {
    color: #1e3a8a;
    font-size: 24px;
}

/* Улучшенные стили профиля */
.profile-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.profile-section h4 {
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 18px;
}

.profile-section p {
    margin: 8px 0;
    color: #555;
    line-height: 1.6;
}

.profile-section strong {
    color: #333;
}

/* Улучшенные стили форм */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #1e3a8a;
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #1e3a8a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Стили для форм поддержки */
.support-form {
    background: white;
    padding: 24px;
    border-radius: 16px;
}

.support-form .form-group {
    margin-bottom: 24px;
}

.support-form .btn {
    width: 100%;
    margin-top: 12px;
}

/* Улучшенная навигация */
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    flex: 1;
}

.nav-item.active {
    color: #1e3a8a;
}

.nav-item.active i {
    background: #1e3a8a;
    color: white;
    padding: 8px;
    border-radius: 12px;
}

.nav-item:not(.active):hover {
    color: #2563eb;
}

.nav-item span {
    font-size: 12px;
    font-weight: 500;
}
