body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    padding: 20px;
}

/* Стиль для підкресленого тексту (якоря) */
.isbn-trigger {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

/* Оверлей - затемнений фон та контейнер для центрування вікна */
.popup-overlay {
    display: none; /* ЗАЛИШИТИ ТІЛЬКИ ЦЕЙ РЯДОК ДЛЯ 'display' У CSS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: black;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center; /* Ці властивості будуть працювати, коли JS змінить display на 'flex' */
    align-items: center;
    z-index: 1000;
}

/* Контент спливаючого вікна */
.popup-content {
    color: blue;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 400px;
    width: 90%;
    box-sizing: border-box;
    margin: 20px;
    text-align: left;
}

/* Кнопка закриття */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}

.close-btn:hover {
    color: #000;
}	
