
	body{
		background-color: #f5f5f5;
		background-image: url(https://lk.yemorkovin.ru/fon.png);
		background-repeat: repeat;
		background-size: 300px;
		font-family: 'Inter', sans-serif;
	}
	   /* Кнопка чата (справа внизу) */
        #chat-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            z-index: 1000;
        }
        
        /* Окно чата (скрыто по умолчанию) */
        #chat-window {
            display: none;
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 300px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        #chat-messages {
            height: 200px;
            overflow-y: auto;
            padding: 10px;
        }
        
        #user-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        #send-button {
            width: 100%;
            padding: 10px;
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }


#searchInput {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

#searchInput:focus {
    outline: none;
    border-color: #94a3b8;
    background-color: white;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.search-results {
    position: absolute;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 8px;
    padding: 0;
    list-style: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    display: none;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #334155;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.dropdown-item:hover {
    background-color: #f8fafc;
}

.dropdown-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.dropdown-item small {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    display: block;
}

		
        /* Стили для модального окна */
        .telegram-modal {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 300px;
            background: #0088cc;
            color: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        
        .telegram-modal.show {
            display: block;
            opacity: 1;
        }
        
        .telegram-modal.hide {
            opacity: 0;
        }
        
        .telegram-modal-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .telegram-modal-close {
            position: absolute;
            top: 5px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
        }
        
        .telegram-modal-logo {
            font-size: 40px;
            margin-bottom: 10px;
        }
        
        .telegram-modal-text {
            text-align: center;
            margin-bottom: 15px;
        }
        
        .telegram-modal-button {
            background: white;
            color: #0088cc;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
        }
   
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-icon svg {
    width: 24px;
    height: 24px;
    color: #64748b;
}

.search-icon:hover svg {
    color: #334155;
}

.search-container {
    position: relative;
    display: none;
	margin: 15px;
	justify-content: center;

    transition: all 0.3s ease;
    margin-left: 8px;
}
#searchInput{
	    max-width: 500px;
}
.search-container.active {
    max-width: 400px;
    opacity: 1;
    visibility: visible;
}

#searchInput {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

#searchInput:focus {
    outline: none;
    border-color: #94a3b8;
    background-color: white;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.search-results {
    position: absolute;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 8px;
    padding: 0;
    list-style: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    display: none;
	top: 31px;
	max-width: 500px
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #334155;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.dropdown-item:hover {
    background-color: #f8fafc;
}

.dropdown-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.dropdown-item small {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    display: block;
}


.header__social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.header__social-link {
    display: inline-flex;
    color: #333;
    transition: color 0.3s ease;
}

.header__social-link:hover {
    color: orange;
}
.header__social-icon:hover{
	color: orange;
}
.header__social-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}