body {
    font-family: Arial, Helvetica, sans-serif;
}
/* Button Floating */


.guestbook-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}


.guestbook-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Container */
.guestbook-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
}


/* Active State */
.guestbook-container.active {
    display: block;
}


.hidden,
.guestbook-container{
    display: none;
}

/* Header */
.guestbook-header {
    background: #007bff;
    color: #fff;
    padding: 12px 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* Form */
.guestbook-form {
    padding: 10px;
}

.guestbook-form label {
    font-size: 12px;
    margin-top: 4px;
    display: block;
    color: #333;
}

.guestbook-form input,
.guestbook-form textarea {
    width: 100%;
    padding: 8px 10px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
}

.guestbook-form input:focus,
.guestbook-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Submit Button */
.submit-btn {
    margin-top: 15px;
    width: 100%;
    background: #28a745;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #218838;
}
