body {
    font-family: Arial, Helvetica, sans-serif; /* Native support for Hungarian characters */
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

header {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #0066cc;
}

article {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
    border-radius: 4px;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

button:hover {
    background: #218838;
}

.auth-box {
    background: white;
    padding: 30px;
    max-width: 400px;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.error {
    color: red;
    font-weight: bold;
}

/* Komment szekció stílusai */
.comments-section {
    margin-top: 40px;
}

.comment-form textarea, .reply-form textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: inherit;
    margin-bottom: 10px;
}

.comment-box {
    background: #fff;
    padding: 15px;
    margin-top: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.comment-header {
    margin-bottom: 5px;
    color: #555;
}

.comment-header strong {
    color: #000;
}

.comment-text {
    margin-top: 0;
    margin-bottom: 10px;
}

.reply-btn {
    background: transparent;
    color: #0066cc;
    padding: 0;
    font-size: 14px;
    text-decoration: underline;
}

.reply-btn:hover {
    background: transparent;
    color: #004499;
}

.reply-form {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}

.replies-list {
    margin-top: 15px;
    margin-left: 30px; /* Ez húzza be a válaszokat jobbra */
    border-left: 3px solid #0066cc;
    padding-left: 15px;
}

.reply-box {
    background: #fdfdfd;
    border: none;
    padding: 10px 0 10px 0;
    border-bottom: 1px solid #eee;
    margin-top: 0;
    border-radius: 0;
}

.reply-box:last-child {
    border-bottom: none;
}

/* Reszponzív és modern képbeágyazás stílusai */
.post-image-wrap {
    width: 100%;
    margin: 25px 0;
    text-align: center;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: inline-block;
}

/* Átalakult Topic / Thread stílusok */
.topic-alert-box {
    background: #f0f7ff;
    border: 1px solid #b3d7ff;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.topic-link-btn {
    display: inline-block;
    margin-top: 8px;
    background: #0066cc;
    color: #fff !important;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.topic-link-btn:hover {
    background: #004499;
}

.original-topic-post {
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15);
}
