/* Basic styles for the Image Generator page */
.acl-image-generator-wrap {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.acl-image-generator-wrap h1 {
    margin-top: 0;
    text-align: center;
    font-size: 24px;
}

/* Table styling */
.acl-image-generator-wrap .form-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.acl-image-generator-wrap .form-table th {
    width: 200px;
    text-align: left;
    vertical-align: top;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.acl-image-generator-wrap .form-table td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Descriptions */
.acl-image-generator-wrap .description {
    font-size: 0.9em;
    color: #666;
}

/* Input fields styling */
.acl-image-generator-wrap input[type="text"],
.acl-image-generator-wrap input[type="number"],
.acl-image-generator-wrap input[type="url"],
.acl-image-generator-wrap textarea,
.acl-image-generator-wrap select {
    width: 100%;
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Checkbox styling */
.acl-image-generator-wrap input[type="checkbox"] {
    margin-right: 5px;
}

/* Dynamic fields container */
.acl-image-generator-wrap .dynamic-field {
    margin-bottom: 15px;
}

/* Submit button and overall button styling */
.acl-image-generator-wrap .submit {
    margin-top: 20px;
    text-align: right;
}
.acl-image-generator-wrap button {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.acl-image-generator-wrap button:hover {
    background-color: #005177;
}

/* Error message styling */
.acl-image-generator-wrap .error {
    background-color: #fdd;
    border: 1px solid #fbb;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .acl-image-generator-wrap .form-table th,
    .acl-image-generator-wrap .form-table td {
        display: block;
        width: 100%;
    }
    .acl-image-generator-wrap .form-table th {
        margin-bottom: 5px;
    }
}