/*
 * Automaize Guestbook and Testimonials Frontend Styles
 */
.automaize-gb-form-wrapper {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.automaize-gb-field {
    margin-bottom: 15px;
}

.automaize-gb-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.automaize-gb-field input[type="text"],
.automaize-gb-field input[type="email"],
.automaize-gb-field input[type="url"],
.automaize-gb-field textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}

/* Image Upload Preview */
.image-preview {
    margin-top: 10px;
}

.automaize-gb-image {
    margin: 12px 0 4px;
    max-width: 50%;
}

.automaize-gb-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 3px;
}

/* Entry List */
.automaize-gb-list-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.automaize-gb-entry {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.automaize-gb-admin-reply {
    margin-top: 10px;
    padding: 8px 12px;
    border-left: 4px solid #007cba;
    background: #eef7fc;
}

/* Status Messages */
.automaize-gb-messages .notice-error {
    border-left-color: #dc3232;
}

.automaize-gb-messages .notice-success {
    border-left-color: #46b450;
}