@charset "utf-8";
/* CSS Document */

p{

		color:#0a0823;
		font-size:18px;
		font-family: "Roboto Condensed", sans-serif;
		line-height: 25px;
		margin:0px 0px 10px 10px;
		letter-spacing: 3px;
		word-spacing: 8px;
		text-align: justify;	
}

/* Comments Container */
.comments-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px;
}

/* Individual Comment */
.comment {
    display: flex;          /* Enable side-by-side layout */
    gap: 20px;             /* Space between columns */
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.comment-author {
    font-weight: bold;
    color: #333;
}

.comment-date {
    display: block;
    font-size: 0.85em;
    color: #666;
}

.comment-text {
    line-height: 1.5;
    color: 333;
	text-align: justify;
	color:#0a0823;
	font-size: 17px;
	font-family: "Roboto Condensed", sans-serif;
	margin:0px 0px 10px 10px;
	letter-spacing: 3px;
	word-spacing: 3px;
	text-align: justify;
}

/* Left Column (Meta) */
.comment-meta {
    flex: 0 0 70px;       /* Fixed width */
    text-align: left;      /* Align name/date to left */
	font-family: "Roboto Condensed", sans-serif;
	
}

.comment-name {
    display: block;
    font-weight: bold;
    font-size: 1.2em;      /* Slightly larger */
    margin-bottom: 5px;    /* Space between name and date */
}
.comment-content {
    flex: 1;               /* Takes remaining space */
    padding-left: 15px;
    border-left: 1px solid #eee; /* Visual separator */
    line-height: 1.5;
    color: #333;
	text-align: justify;
}
.comment-author {
    font-weight: bold;
    font-size: 1.2em;
    color: #06C;
    margin-bottom: 5px;    /* Space between name and date */
}
.comment-date {
    font-size: 0.85em;
    color: #930;
}

/* Right Column (Content) */
.comment-text {
    flex: 1;               /* Takes remaining space */
    padding-left: 15px;
    border-left: 1px solid #eee; /* Visual separator */
    line-height: 1.5;
}
.no-comments {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px;
}