/* --- Стили для страницы гостевой книги (guestbook.php) --- */
.guestbook-page .container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.guestbook-title {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
}

.guestbook-item {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.question-author {
    font-weight: bold;
    color: #009900;
}

.question-date {
    font-size: 0.9em;
    color: #777;
}

.question-text {
    line-height: 1.7;
    word-wrap: break-word;
    color: #444;
    white-space: pre-wrap;
}

.answer-block {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #009900;
    border-radius: 0 8px 8px 0;
}

.answer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.answer-author {
    font-weight: bold;
    color: #333;
}

.answer-date {
    font-size: 0.9em;
    color: #777;
}

.answer-text {
    line-height: 1.7;
    color: #555;
    white-space: pre-wrap;
}