/* Загальні стилі */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 20px;
}

/* Іконка будиночок */
.home-icon {
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 24px;
    text-decoration: none;
    color: #4CAF50;
    background: white;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    z-index: 1000;
}
.home-icon:hover {
    background-color: #4CAF50;
    color: white;
}

/* Навбар */
nav {
    background: #f0f0f0;
    padding: 10px;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav li {
    position: relative; /* потрібно для випадаючого меню */
    margin-right: 20px;
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px;
    display: block;
}
/* стилі для підменю */
nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    border: 1px solid #ccc;
}
nav li ul li {
    margin: 0;
}
nav li ul a {
    font-weight: normal;
    color: #555;
    padding: 5px 15px;
}
nav li:hover ul {
    display: block;
}

/* Заголовки */
h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Списки */
ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}
li {
    margin: 8px 0;
}

/* Стиль для посилань */
a,
a.lfm-link,
a.diluent-link {
    display: block;
    padding: 10px 15px;
    background: #e6f2ff;
    border: 1px solid #b3d9ff;
    border-radius: 5px;
    text-decoration: none;
    color: #004080;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}
a:hover,
a.lfm-link:hover,
a.diluent-link:hover {
    background: #cce6ff;
    border-color: #80bfff;
    color: #00264d;
}

/* Кнопки */
.back-btn, .home-btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}
.back-btn:hover, .home-btn:hover {
    background-color: #45a049;
}

/* Спеціальний стиль для кнопки "На головну" */
.home-btn {
    display: block;
    margin: 30px auto;
    text-align: center;
    width: 150px;
}
/* Пошукове поле */
form input[type="text"] {
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Список ЛФМ */
.list-group-item {
    text-align: center;
    font-size: 1.1rem;
}

/* Посилання всередині списку */
.lfm-link {
    background: none;
    border: none;
    color: #004080;
    font-weight: 500;
    text-decoration: none;
}
.lfm-link:hover {
    color: #00264d;
    text-decoration: underline;
}

