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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
    max-width: 1600px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Sidebar */
.sidebar {
    width: 350px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: width 0.3s;
}

.sidebar.files-mode {
    border-right: none;
    width: 100%;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.sidebar-header h2 {
    font-size: 24px;
    margin: 0;
    color: #2c3e50;
}}

.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.company-filter {
    margin-top: 10px;
}

.company-filter select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.company-filter select:focus {
    outline: none;
    border-color: #2196f3;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.connected {
    background: #4caf50;
}

.status-dot.disconnected {
    background: #f44336;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-list {
    flex: 1;
    overflow-y: auto;
}

.chat-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

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

.chat-item.active {
    background: #e3f2fd;
    border-left: 3px solid #2196f3;
}

.chat-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.chat-platform {
    font-size: 18px;
}

.chat-name {
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.chat-time {
    font-size: 11px;
    color: #999;
}

.chat-item-preview {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 26px;
}

.unread-badge {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: #2196f3;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.loading, .error, .no-chats {
    padding: 20px;
    text-align: center;
    color: #999;
}

.error {
    color: #f44336;
}

/* Main Area */
.main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fafafa;
}

.chat-header {
    padding: 20px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.chat-header-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.chat-header-name {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.user-link {
    color: #2196f3;
    text-decoration: none;
    transition: color 0.2s;
}

.user-link:hover {
    color: #1976d2;
    text-decoration: underline;
}

.chat-header-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

.no-chat-selected {
    text-align: center;
    color: #999;
}

.messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.no-chat-selected-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
}

.placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-messages {
    text-align: center;
    color: #999;
    padding: 40px;
}

/* Messages */
.message {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.incoming {
    align-self: flex-start;
    background: white;
    border: 1px solid #e0e0e0;
}

.message.outgoing {
    align-self: flex-end;
    background: #2196f3;
    color: white;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 10px;
}

.message-sender {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
}

.message-time {
    font-size: 11px;
    opacity: 0.6;
}

.message-text {
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Markdown стили */
.markdown-content p {
    margin: 0 0 8px 0;
}

.markdown-content p:last-child {
    margin-bottom: 0;
}

.markdown-content a {
    color: inherit;
    text-decoration: underline;
}

.message.incoming .markdown-content a {
    color: #2196f3;
}

.message.outgoing .markdown-content a {
    color: #fff;
}

.markdown-content code {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.message.outgoing .markdown-content code {
    background: rgba(255, 255, 255, 0.2);
}

.markdown-content pre {
    background: rgba(0, 0, 0, 0.05);
    padding: 8px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 8px 0;
}

.message.outgoing .markdown-content pre {
    background: rgba(255, 255, 255, 0.2);
}

.markdown-content pre code {
    background: none;
    padding: 0;
}

.markdown-content ul, .markdown-content ol {
    margin: 8px 0;
    padding-left: 20px;
}

.markdown-content strong {
    font-weight: 600;
}

.markdown-content em {
    font-style: italic;
}

/* Message Input */
.message-input-container {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

#messageInput {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    max-height: 120px;
    overflow-y: auto;
}

#messageInput:focus {
    outline: none;
    border-color: #2196f3;
}

.send-button {
    padding: 0 24px;
    background: #2196f3;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.send-button:hover {
    background: #1976d2;
}

.send-button:active {
    transform: scale(0.98);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    .main-area {
        display: none;
    }
    
    .container {
        flex-direction: column;
    }
}

.loading-more {
    padding: 15px 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
    background: #f8f9fa;
    border-top: 1px solid #f0f0f0;
}

/* Разделитель дат */
.date-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    position: relative;
}

.date-separator::before,
.date-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.date-label {
    padding: 0 15px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    background: #fafafa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Табы для фильтрации чатов */
.chat-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    background: #fafafa;
    padding: 0 20px;
}

.chat-tab {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    user-select: none;
}

.chat-tab:hover {
    color: #2196f3;
}

.chat-tab.active {
    color: #2196f3;
    border-bottom-color: #2196f3;
}

.chat-tab-count {
    display: inline-block;
    background: #e0e0e0;
    color: #666;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
}

.chat-tab.active .chat-tab-count {
    background: #2196f3;
    color: white;
}

/* Сообщения для оператора */
.message.operator-request {
    max-width: 90% !important;
    align-self: center !important;
    background: #fff9c4 !important;
    border: 2px solid #fbc02d !important;
    color: #333 !important;
    padding: 20px !important;
    text-align: center;
}

.message.operator-request .message-header {
    justify-content: center;
    margin-bottom: 10px;
}

.message.operator-request .message-sender {
    color: #f57c00 !important;
    font-weight: 700;
    font-size: 14px;
}

.message.operator-request .message-sender::before {
    content: "📞 MESSAGE FOR OPERATOR";
    display: block;
    margin-bottom: 5px;
}

.message.operator-request .message-time {
    color: #666 !important;
}

.message.operator-request .message-text {
    color: #333 !important;
    font-weight: 500;
}

/* Кнопка возврата на бота */
.return-to-bot-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.return-to-bot-btn:hover {
    background: #f57c00;
    transform: translateY(-50%) scale(1.1);
}

.return-to-bot-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Кнопка "Перевести на оператора" */
.pause-chat-btn {
    flex: 1;
    padding: 16px 24px;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.pause-chat-btn:hover {
    background: #f57c00;
}

.pause-chat-btn:active {
    transform: scale(0.98);
}

.chat-header {
    position: relative;
}

/* Кнопки в сообщениях */
.message-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.message-button {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: default;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.message.outgoing .message-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.message-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.message.outgoing .message-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Специальные типы кнопок */
.message-button.webapp-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.message.outgoing .message-button.webapp-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.message-button.link-button {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
}

.message.outgoing .message-button.link-button {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    opacity: 0.9;
}

.message-button.callback-button {
    /* Стандартный стиль уже определен выше */
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .message-buttons {
        flex-direction: column;
    }
    
    .message-button {
        width: 100%;
        justify-content: center;
    }
}

/* View Selector */
.view-selector {
    position: relative;
}

.view-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 120px;
}

.view-selector-btn:hover {
    border-color: #2196f3;
    background: #f8f9fa;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s;
}

.view-selector-btn:hover .dropdown-arrow {
    transform: translateY(2px);
}

.view-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.view-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.view-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 500;
    color: #2c3e50;
}

.view-option:first-child {
    border-radius: 6px 6px 0 0;
}

.view-option:last-child {
    border-radius: 0 0 6px 6px;
}

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

.view-option.active {
    background: #e3f2fd;
    color: #2196f3;
}

.view-icon {
    font-size: 20px;
}

/* Views Layout */
.chats-view {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.files-view {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

/* Files View */
.files-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.files-header h3 {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.upload-file-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #2196f3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-file-btn:hover {
    background: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

.upload-file-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 16px;
}

.files-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-width: 100%;
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.file-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.file-item:hover {
    border-color: #2196f3;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.file-delete-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(244, 67, 54, 0.9);
    color: white;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 10;
}

.file-item:hover .file-delete-btn {
    opacity: 1;
}

.file-delete-btn:hover {
    background: rgba(211, 47, 47, 1);
    transform: scale(1.1);
}

.file-preview {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-icon {
    font-size: 48px;
}

.file-name {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.no-files {
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 16px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.modal-body {
    flex: 1;
    overflow: auto;
    padding: 20px;
    min-width: 400px;
    min-height: 300px;
    max-height: 70vh;
}

.modal-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.modal-text {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #2c3e50;
    margin: 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-btn {
    background: #2196f3;
    color: white;
}

.download-btn:hover {
    background: #1976d2;
}

.cancel-btn {
    background: #f5f5f5;
    color: #666;
}

.cancel-btn:hover {
    background: #e0e0e0;
}

.upload-btn-primary {
    background: #4caf50;
    color: white;
}

.upload-btn-primary:hover:not(:disabled) {
    background: #45a049;
}

.upload-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.edit-btn {
    background: #ff9800;
    color: white;
}

.edit-btn:hover {
    background: #f57c00;
}

.file-edit-textarea {
    width: 100%;
    min-height: 400px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    resize: vertical;
    background: #f8f9fa;
}

.file-edit-textarea:focus {
    outline: none;
    border-color: #2196f3;
    background: white;
}

/* Upload Modal */
.upload-modal-content {
    width: 500px;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
}

.upload-area {
    border: 3px dashed #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
}

.upload-area:hover {
    border-color: #2196f3;
    background: #f0f8ff;
}

.upload-area.drag-over {
    border-color: #2196f3;
    background: #e3f2fd;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.upload-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.upload-options {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 48px;
    height: 24px;
    background: #ccc;
    border-radius: 24px;
    transition: background 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider {
    background: #2196f3;
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.toggle-text {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.selected-file {
    margin-top: 15px;
    padding: 12px 16px;
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.file-name-display {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.remove-file-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-file-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive Files */
@media (max-width: 768px) {
    .files-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .modal-content {
        max-width: 95%;
    }

    .upload-modal-content {
        width: 90%;
    }

    .modal-body {
        min-width: auto;
    }
}

/* Лейбл компании */
.company-badge {
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    margin-left: 4px;
    /* background и color задаются динамически через style */
}