/* General styling for the shoutbox section */
#shoutbox-section {

}

#shoutbox-section a {
    text-decoration: none;
}

.shoutbox-form input {
    width: 100%;
    display: block;
	font-family: "Ruluko", system-ui;
  font-size: 12px;
	border: 1px solid #6ea5cd;
}

input, button {
background:#e7d7b4;
padding:3px;
	border: 1px solid #6ea5cd;
	color: #6ea5cd;
	font-family: "Ruluko", system-ui;
	font-size: 12px;
}

/* Styling for each entry */
.shoutbox-entry {
    font-size: 9pt;
    padding: 5px;
}

.shoutbox-entry:nth-child(odd) {
    background: rgba(231,215,180,0.80);
}
.shoutbox-entry:nth-child(even) {
    background: rgba(231,215,180,0.70);
}

/* Info section styling */
.shoutbox-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.shoutbox-name {
    font-weight: bold;
}

.shoutbox-date {
    color: #6ea5cd;
font-family: "Ruluko", system-ui;
  font-size: 12px;
}

/* Text styling */
.shoutbox-text {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Action button styling */
.shoutbox-actions {
    display: inline;
    margin-right: 10px;
}

.shoutbox-actions button {
    background-color: #6ea5cd;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
	font-family: "Ruluko", system-ui;
	font-size: 12px;
}

.shoutbox-actions button:hover {
    background-color: #e2c55a;
}

/* Edit link styling */
.shoutbox-actions form {
    display: inline; /* Ensure form is inline */
    margin: 0; /* Remove default margin */
}

.shoutbox-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.shoutbox-actions button {
    background-color: #e2c55a; /* Red for delete button */
    color: #6ea5cd;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.shoutbox-actions button:hover {
    background-color: #6ea5cd; 
}

.shoutbox-actions a {
    background-color: #fff; /* Grey for edit link */
    color: black;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.shoutbox-actions a:hover {
    background-color: #6ea5cd;
}

.shoutbox_lastname {
    display: none !important;
}