
body {
    font-family: Arial, sans-serif;
    background-color: rgb(225, 225, 225);
    margin: 0;
    padding: 0;
}

header.nagl-kom {
    background-color: rgb(199, 199, 199);
    padding: 20px;
    text-align: center;
}

header.nagl-kom h1 {
    margin: 0;
}

header.nagl-kom nav ul {
    list-style-type: none;
    padding: 0;
}

header.nagl-kom nav ul li {
    display: inline;
    margin: 0 10px;
}

header.nagl-kom nav ul li a {
    text-decoration: none;
    color: black;
}

.container-kom {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

article {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header.nagl-artyk {
    background-color: rgb(131, 21, 21);
    color: white;
    padding: 10px;
    border-radius: 4px;
}

header.nagl-artyk h2 {
    margin: 0;
}

.comment-form {
    margin-top: 20px;
}

.comment-form h2 {
    margin-bottom: 10px;
}

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

.comment-form button {
    background-color: rgb(131, 21, 21);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.comment-form button:hover {
    background-color: rgb(110, 18, 18);
}

.comments {
    margin-top: 20px;
}

.comment-box {
    background-color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.comment-header {
    /* Remove or comment out the following lines */
    /* display: flex;
    justify-content: space-between; */
    margin-bottom: 5px;
}

.comment-header strong {
    font-weight: bold;
    display: block; /* Make the username a block element */
}

.comment-header small {
    color: #888;
    display: block; /* Make the timestamp a block element */
}

/* OR, if you want username and timestamp on the same line but below the comment: */
.comment-header {
    margin-bottom: 5px;
}

.comment-header strong {
    font-weight: bold;
}

.comment-header small {
    color: #888;
    display: inline; /* Keep timestamp inline with username */
    margin-left: 10px; /* Add some space between username and timestamp */
}

footer {
    background-color: rgb(199, 199, 199);
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

footer nav ul {
    list-style-type: none;
    padding: 0;
}

footer nav ul li {
    display: inline;
    margin: 0 10px;
}

footer nav ul li a {
    text-decoration: none;
    color: black;
}