body {
    background-color: #f0f8ff; /* Light blue background color */
    background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 20px 20px;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    padding-top: 50px; /* Space at the top above the header */
}

.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.guestbook-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 60%;
    max-width: 500px;
    margin-right: 20px;
}

.header-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

h1 {
    margin-top: 20px;
    font-size: 2em;
    color: #333;
}

p {
    font-size: 1.2em;
    color: #666;
}

form {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"],
input[type="file"] {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    margin-bottom: 10px; /* Added margin-bottom to create space */
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.delete-all-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.delete-all-button:hover {
    background-color: #c82333;
}

#images-container {
    width: 30%; /* Positioned to the right side */
    max-width: 400px;
}

.image-entry {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.thumbnail {
    max-width: 100px; /* Thumbnail size */
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s; /* Animation */
}

.thumbnail:hover {
    transform: scale(1.1); /* Zoom in */
}

.image-entry span {
    margin-top: 10px;
    font-size: 1em;
    color: #333;
}

.image-entry small {
    display: block;
    margin-top: 5px;
    font-size: 0.8em;
    color: #666;
}

.delete-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8em;
}

.delete-button:hover {
    background-color: #c82333;
}




