.form-group {
    margin-bottom: 15px;
    width: 100%;
    flex: 1 1 100%;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    display: block;
    margin-bottom: 5px;
}
input[type="text"], textarea {
    width: 100%;
    resize: vertical;
    min-height: 35.5px;
    padding: 8px;
    box-sizing: border-box;
}
button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #45a049;
}

#guestbook-entries {
    margin-top: 20px;
}
.entry {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}
.entry:last-child {
    border-bottom: none;
}

.entry-name-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.entry p,
.entry pre {
    margin: 0;
}

.entry pre {
    overflow-x: auto;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
}

.cf-turnstile {
    --scale: 1;
    transform: scale(var(--scale));
    transform-origin: center;
    -webkit-transform: scale(var(--scale));
    -webkit-transform-origin: center;
    -moz-transform: scale(var(--scale));
    -moz-transform-origin: center;
    -o-transform: scale(var(--scale));
    -o-transform-origin: center;
    -ms-transform: scale(var(--scale));
    -ms-transform-origin: center;
}

@media screen and (max-width: 400px) {
    .cf-turnstile {
        --scale: 0.7;
    }
}

@media screen and (max-width: 300px) {
    .cf-turnstile {
        --scale: 0.6;
    }
}

@media screen and (max-width: 200px) {
    .cf-turnstile {
        --scale: 0.5;
    }
}