body {
    background-color: #dddcdc;
    font-family: Arial, sans-serif;
}

.main {
    position: absolute;
    top: 56px;
    left: 10px;
    right: 10px;
    border: 3px solid #1fa0e0;
    border-radius: 10px;
    padding: 20px;
    background-color: #eeeeee;
}

.post h2 {
    color: #333;
    margin: 0; /* Remove margin above and below title */
}

.post p {
    color: #555;
}

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

.comment-section h3 {
    color: #333;
    margin: 0; /* Remove margin above and below title */
}

.button {
    background-color: #dddcdc;
    color: #1fa0e0;
    padding: 4px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border: 3px solid #1fa0e0;
    border-radius: 6px;
    margin-bottom: 4px;
}

.button:hover {
    background-color: #1fa0e0;
    color: #edf1f6;
}

.comments .comment {
    background-color: #f9f9f9;
    padding: 10px;
    margin-bottom: 4px;
    border-radius: 5px;
    border: 3px solid #1fa0e0;
}

.comments .comment p {
    margin: 4px;
}

.replies {
    padding-left: 20px;
    margin-top: 10px;
}

.replies .reply {
    background-color: #f0f0f5;
    padding: 8px;
    border-radius: 5px;
    border: 3px solid #1fa0e0;
    margin-bottom: 4px;
}
.rounded-input {
  background-color: #dddcdc;
  color: #1fa0e0;
  padding: 4px 8px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border: 3px solid #1fa0e0;
  border-radius: 6px;
  margin-bottom: 4px;
}
/* Hide the default checkbox */
.custom-checkbox {
    display: none;
}

/* Style the label to look like a button */
.custom-checkbox + label {
    display: inline-block;
    padding: 4px 8px;
    border: 3px solid #1fa0e0; /* Border color */
    border-radius: 6px; /* Rounded corners */
    background-color: #dddcdc; /* Background color */
    color: #007bff; /* Text color */
    font-size: 16px;
    cursor: pointer;
    user-select: none; /* Prevents text selection */
  margin-bottom: 4px;
}

/* Change background and text color when hovering */
.custom-checkbox + label:hover {
    background-color: #1fa0e0;
    color: white;
}

/* Change appearance when checkbox is checked */
.custom-checkbox:checked + label {
    background-color: #1fa0e0;
    color: white;
    border-color: #1fa0e0; /* Darker border color when selected */
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 60%;
  background-color: #dddcdc;
}

td, th {
  border: 3px solid #1fa0e0;
  text-align: center;
  padding: 8px;
}

footer {
    padding: 0px;
    font-size: 12px;
    text-align: center;
    color: red;
    pointer-events: none;
}