* {
    box-sizing: border-box;
}

html {
    font-family: Verdana;
}

body {
    background-color: #80FF00;
}

.container {
    max-width: 70%;
    margin-top: 2rem;
	margin-left: auto;
    margin-right: auto;
}

.guestbook-message {
	display: block;
    color: black;
    font-size: 2rem;
	font-weight: bold;
	margin-left: 3px;
}

.guestbook-entry-label {
    display: block;
    color: black;
    font-size: 1rem;
	margin-left: 3px;
}

.guestbook-entry-input {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    background-color: #D1FFD1;
    color: #00B800;
    border: 3px solid lime;
    font-family: inherit;
    line-height: 1.5rem;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
}

.guestbook-entry-input:focus {
    outline: none;
    border: 3px solid #00B800;
}

.guestbook-form-buttons {
    text-align: center;
}

.button {
    -webkit-appearance: none;
    appearance: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: bold;
    border: 5px double white;
    background-color: black;
    color: lime;
	text-decoration: underline;
    padding: 18px 25px;
	margin: 20px;
}

.button:hover {
    color: silver;
}

.guestbook-separator {
    -webkit-appearance: none;
    appearance: none;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1.5px solid #00B800;
}

.guestbook-pagination {
    margin: 1.75rem -0.5rem;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}

.guestbook-pagination-a {
	-webkit-appearance: none;
    appearance: none;
	display: block;
    min-width: 2.5rem;
	cursor: pointer;
    background-color: black;
    color: lime;
	font-family: inherit;
	text-decoration: none;
	line-height: 1.5rem;
    border: 5px double white;
	text-align: center;
	padding: 0.25rem 0.5rem;
    margin: 0.25rem 0.5rem;
}

.guestbook-pagination-a:hover {
    color: silver;
}

.guestbook-pagination-active,
.guestbook-pagination-active:hover {
    background-color: #00B800;
}

.guestbook-entry {
    background-color: #D1FFD1;
    color: #00B800;
    font-family: inherit;
	border: 3px solid #00B800;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.guestbook-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.guestbook-entry-title {
    font-weight: bold;
	font-size: 1rem;
	margin-top: 0;
	margin-bottom: 0.25rem;
}

.guestbook-entry-author {
	font-size: 1rem;
	max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
}

.guestbook-entry-content > p {
	font-size: 1rem;
	line-height: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.guestbook-entry-content > p:last-child {
    margin-bottom: 0;
}

.guestbook-entry-content-date-separator {
    -webkit-appearance: none;
    appearance: none;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 1.5px solid #00B800;
}

.guestbook-entry-date {
	font-size: 0.75rem;
	margin-bottom: 0;
}

.guestbook-button-up-and-next {
	font-family: inherit;
    margin-top: 2rem;
	margin-bottom: 2rem;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.guestbook-button-up-only {
	font-family: inherit;
    margin-top: 2rem;
	margin-bottom: 2rem;
    padding: 0;
    display: flex;
    justify-content: left;
}

.guestbook-button-up-and-next-a {
	-webkit-appearance: none;
    appearance: none;
	display: block;
    min-width: 130px;
	min-height: 30px; 
	cursor: pointer;
    background-color: black;
    color: lime;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: bold;
	text-decoration: underline;
    border: 5px double white;
	padding: 18px 25px;
	text-align: center;
}

.guestbook-button-up-and-next-a:hover {
    color: silver;
}
