* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.auth-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.auth-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.auth-card h2 {
    color: #333;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.btn:hover {
    background: #5a67d8;
}

.btn-primary {
    background: #764ba2;
}

.btn-primary:hover {
    background: #684591;
}

.features {
    text-align: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature h3 {
    color: #667eea;
    margin-bottom: 10px;
}

/* Навигация */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    margin-bottom: 30px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-links a:hover {
    background: #f0f0f0;
}

.nav-links a.active {
    background: #667eea;
    color: white;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Посты */
.posts-container {
    max-width: 800px;
    margin: 0 auto;
}

.post-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

.post {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.post-author-info h4 {
    margin-bottom: 5px;
}

.post-date {
    color: #666;
    font-size: 14px;
}

.post-content {
    margin-bottom: 15px;
    line-height: 1.6;
}

.post-actions {
    display: flex;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.like-btn, .comment-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.like-btn:hover, .comment-btn:hover {
    color: #667eea;
}

/* Формы */
.form-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

/* Сообщения */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Профиль */
.profile-header {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.profile-info h1 {
    margin-bottom: 10px;
}

.profile-info p {
    color: #666;
    margin-bottom: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .auth-options {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Стили для значков пользователя */
.user-badge {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

.admin-badge {
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.moderator-badge {
    background: linear-gradient(45deg, #ffc107, #ffd54f);
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.verified-badge {
    background: #1DA1F2;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
}

.banned-badge {
    background: #6c757d;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 10px;
    margin-left: 5px;
}

.badge-banned {
    background: #dc3545;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.badge-active {
    background: #28a745;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .btn-small {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .container {
        padding: 10px;
    }
    
    .post-form textarea {
        font-size: 16px;
        min-height: 80px;
    }
    
    .hashtag {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .mobile-hide {
        display: none !important;
    }
    
    .desktop-hide {
        display: inline !important;
    }
}

@media (min-width: 769px) {
    .mobile-hide {
        display: inline !important;
    }
    
    .desktop-hide {
        display: none !important;
    }
}

/* Добавьте эти стили в конец файла style.css */

/* Мобильная адаптация для сообщений */
@media (max-width: 768px) {
    .messages-container {
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 200px);
    }
    
    .conversations-list {
        width: 100%;
        max-height: 300px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    
    .chat-area {
        min-height: 400px;
    }
    
    .chat-header {
        padding: 12px;
    }
    
    .message-form {
        padding: 12px;
    }
    
    .emoji-picker {
        bottom: 50px;
        right: 10px;
        width: 300px;
    }
    
    .file-upload-menu {
        bottom: 50px;
        left: 10px;
        width: 200px;
    }
    
    .message-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .action-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .reply-message {
        max-width: 90%;
    }
}

/* Стили для расширенного функционала сообщений */
.message-form {
    background: white;
    padding: 15px;
    border-top: 1px solid #ddd;
    position: relative;
}

.message-input-container {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 10px 15px;
    border: 1px solid #e9ecef;
}

.message-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-textarea {
    width: 100%;
    border: none;
    background: transparent;
    resize: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    max-height: 120px;
    overflow-y: auto;
    padding: 5px 0;
}

.message-textarea::placeholder {
    color: #adb5bd;
}

.message-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.action-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.action-button:hover {
    background: #e9ecef;
    color: #495057;
}

.action-button.active {
    color: #4f46e5;
    background: #eef2ff;
}

.send-button {
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.send-button:hover {
    background: #4338ca;
}

.send-button:disabled {
    background: #adb5bd;
    cursor: not-allowed;
}

/* Стили для прикрепленных файлов и медиа */
.message-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.attachment-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.attachment-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.attachment-video {
    width: 100px;
    height: 80px;
    border-radius: 8px;
}

.attachment-file {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    min-width: 150px;
}

.file-icon {
    font-size: 24px;
    color: #4f46e5;
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-size: 12px;
    font-weight: 500;
    color: #212529;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    font-size: 11px;
    color: #6c757d;
}

.remove-attachment {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Стили для голосовых сообщений */
.voice-message-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 25px;
}

.voice-record-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.voice-record-btn.recording {
    animation: pulse 1.5s infinite;
    background: #ff4757;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.voice-timer {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.voice-waveform {
    flex: 1;
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
}

.voice-waveform canvas {
    width: 100%;
    height: 100%;
}

.voice-controls {
    display: flex;
    gap: 5px;
}

.voice-control-btn {
    background: none;
    border: none;
    color: #495057;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}

/* Стили для цитирования сообщений */
.reply-message {
    background: #f8f9fa;
    border-left: 3px solid #4f46e5;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative;
}

.reply-info {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.reply-content {
    font-size: 14px;
    color: #212529;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-reply {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 12px;
    padding: 2px;
}

/* Стили для смайликов */
.emoji-picker {
    position: absolute;
    bottom: 60px;
    right: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 350px;
    z-index: 1000;
    display: none;
    border: 1px solid #e9ecef;
}

.emoji-picker.show {
    display: block;
}

.emoji-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    padding: 10px;
    gap: 5px;
}

.emoji-tab {
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.2s;
}

.emoji-tab:hover {
    background: #f8f9fa;
}

.emoji-tab.active {
    background: #eef2ff;
    color: #4f46e5;
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.emoji-item {
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    padding: 5px;
    border-radius: 8px;
    transition: background 0.2s;
}

.emoji-item:hover {
    background: #f8f9fa;
}

/* Стили для стикеров */
.sticker-picker {
    position: absolute;
    bottom: 60px;
    right: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 350px;
    z-index: 1000;
    display: none;
    border: 1px solid #e9ecef;
}

.sticker-picker.show {
    display: block;
}

.sticker-categories {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    padding: 10px;
    gap: 5px;
    overflow-x: auto;
}

.sticker-category {
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s;
}

.sticker-category:hover {
    background: #f8f9fa;
}

.sticker-category.active {
    background: #eef2ff;
    color: #4f46e5;
}

.sticker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.sticker-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s;
}

.sticker-item:hover {
    transform: scale(1.05);
}

.sticker-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

/* Стили для загрузки файлов */
.file-upload-menu {
    position: absolute;
    bottom: 60px;
    left: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 200px;
    z-index: 1000;
    display: none;
    border: 1px solid #e9ecef;
}

.file-upload-menu.show {
    display: block;
}

.upload-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.upload-option:hover {
    background: #f8f9fa;
}

.upload-option i {
    color: #4f46e5;
    font-size: 18px;
}

.upload-option span {
    font-size: 14px;
    color: #212529;
}

.file-input {
    display: none;
}

/* Стили для медиа в сообщениях */
.message-media {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 300px;
}

.message-media img {
    max-width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.message-media video {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
}

.message-file {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    margin-top: 10px;
    max-width: 300px;
}

.message-file-icon {
    font-size: 24px;
    color: #4f46e5;
}

.message-file-info {
    flex: 1;
    min-width: 0;
}

.message-file-name {
    font-size: 13px;
    font-weight: 500;
    color: #212529;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message-file-size {
    font-size: 11px;
    color: #6c757d;
}

.message-file-download {
    background: none;
    border: none;
    color: #4f46e5;
    cursor: pointer;
    padding: 5px;
}

/* Стили для аудио сообщений */
.message-audio {
    margin-top: 10px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    max-width: 300px;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-play-btn {
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.audio-progress {
    flex: 1;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.audio-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #4f46e5;
    border-radius: 2px;
}

.audio-time {
    font-size: 12px;
    color: #6c757d;
    min-width: 40px;
    text-align: right;
}

/* Индикатор набора сообщения */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    font-size: 12px;
    color: #6c757d;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #adb5bd;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    border-left: 4px solid #4f46e5;
}

.notification.error {
    border-left-color: #ff4757;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Улучшенные стили для сообщений */
.message {
    margin-bottom: 15px;
    max-width: 70%;
    transition: all 0.3s ease;
}

.message:hover {
    transform: translateY(-2px);
}

.message-sent {
    margin-left: auto;
}

.message-received {
    margin-right: auto;
}

.message-content-wrapper {
    position: relative;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    position: relative;
}

.message-sent .message-content {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-bottom-right-radius: 5px;
}

.message-received .message-content {
    background: white;
    color: #212529;
    border-bottom-left-radius: 5px;
    border: 1px solid #e9ecef;
}

.message-time {
    font-size: 11px;
    color: #adb5bd;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.message-status {
    font-size: 10px;
}

.message-status.read {
    color: #4f46e5;
}

/* Действия с сообщениями */
.message-actions-btn {
    position: absolute;
    top: 0;
    right: -30px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.message:hover .message-actions-btn {
    opacity: 1;
}

.message-actions-menu {
    position: absolute;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 100;
    display: none;
}

.message-actions-menu.show {
    display: block;
}

.message-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.message-action:hover {
    background: #f8f9fa;
}

.message-action i {
    color: #6c757d;
    font-size: 14px;
    width: 16px;
}

.message-action span {
    font-size: 13px;
    color: #212529;
}

/* Информация о доставке и прочтении */
.message-info {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 11px;
    color: #adb5bd;
    display: none;
}

.message-sent .message-info {
    display: block;
}

/* Стили для меню контекста сообщений */
.context-menu {
    position: fixed;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    display: none;
}

.context-menu.show {
    display: block;
}

.context-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.context-menu-item:hover {
    background: #f8f9fa;
}

.context-menu-item i {
    color: #6c757d;
    font-size: 14px;
    width: 16px;
}

.context-menu-item span {
    font-size: 13px;
    color: #212529;
}

/* Полоса прокрутки */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}