:target {
    scroll-margin-top: 150px;
}
.text-green-600 {
    color: #16a34a;
}
.accordion {
    width: 100%;
    margin: 20px auto;
}
.accordion-item {
    border: 1px solid #ccc;
    margin-bottom: 5px;
}
.accordion-header {
    width: 100%;
    padding: 15px;
    background-color: #f1f1f1;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    outline: none;
    user-select: none; /* Запобігає виділенню тексту при подвійному кліку */
}
.accordion-header:hover {
    background-color: #ddd;
}
.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9f9f9;
}
.accordion-content.open {
    padding: 15px;
    max-height: 1000px; /* Збільшіть, якщо потрібно більше тексту */
}
.link {
    color: #0066cc; /* Синій колір тексту */
    text-decoration: none; /* Без підкреслення за замовчуванням */
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.link:hover {
    color: #004499; /* Темніший синій при наведенні */
    text-decoration: underline; /* Підкреслення при наведенні */
    background-color: #e6f0ff; /* Світло-блакитний фон при наведенні */
}

.link:active {
    color: #003366; /* Ще темніший колір при кліку */
}

.link:focus {
    outline: 2px solid #4d94ff;
    outline-offset: 2px;
}
/* Загальні стилі для заголовків у класі add-header */
.add-header h1,
.add-header h2,
.add-header h3,
.add-header h4,
.add-header h5,
.add-header h6 {
    font-weight: bold !important;
}

/* Стилі для конкретних рівнів вкладеності */
.add-header h1 {
    font-size: 28px !important;
}

.add-header h2 {
    font-size: 25px !important;
}

.add-header h3 {
    font-size: 20px !important;
}

.add-header h4,
.add-header h5,
.add-header h6 {
    font-size: 18px !important;
}
