body {
    font-family: 'Arial', sans-serif;
    background-color: none;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: none;
}

header {
    text-align: center;
    padding-bottom: 20px;
}

.guestbook-form input, .guestbook-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.guestbook-form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

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

.entries {
    margin-top: 20px;
}

.entry {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.entry h3 {
    margin: 0;
}

.entry.pending {
    background-color: #fff3cd;
}

.entry.approved {
    background-color: #d4edda;
}

.actions {
    margin-top: 10px;
}

.actions button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 5px;
}

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

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}
.message-bubble {
    background-color: #e0f7fa; /* Light cyan color */
    border-radius: 10px;
    padding: 10px;
    position: relative;
    margin: 10px 0;
    display: inline-block;
    max-width: 75%; /* Control width of the bubble */
}

.message-bubble p {
    margin: 0;
    color: #333; /* Dark text for readability */
}

.message-bubble:after {
    content: '';
    position: absolute;
    bottom: 100%; /* Position it above the bubble */
    left: 20px; /* Adjust to center based on padding */
    border-width: 10px; /* Size of the triangle */
    border-style: solid;
    border-color: transparent transparent #e0f7fa transparent; /* Triangle pointing down */
}
.message-bubble {
    position: relative;
    background-color: #f1f1f1;
    border-radius: 15px;
    padding: 15px;
    margin: 10px 0;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.message-bubble:after {
    content: '';
    position: absolute;
    bottom: 100%; /* Position it above the bubble */
    left: 20px; /* Adjust the position as needed */
    margin-left: -10px; /* Center the triangle */
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #f1f1f1 transparent; /* Adjust color to match the bubble */
}

.message-bubble {
    position: relative;
    background: #f0f8ff;
    border: 2px solid #3b5998; /* Adjust the color to your preference */
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    max-width: 300px; /* Set max width */
}

.message-bubble .tail {
    position: absolute;
    bottom: 100%; /* Align at the bottom */
    left: 20px; /* Adjust as needed for positioning */
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #f0f8ff transparent; /* Triangle pointing down */
    border-top-color: #3b5998; /* Color of the tail */
}

