/* Basic Styles for Cat Meme Generator */
#cmg-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    box-sizing: border-box;
}

#cmg-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#cmg-form input,
#cmg-form select {
    width: 100% !important;
    margin-bottom: 15px;
    padding: 8px;
    box-sizing: border-box;
}

#cmg-form button {
    width: 100% !important;
    background: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

#cmg-form button:hover {
    background: #005177;
}

#cmg-preview img {
    margin-top: 20px;
    width: 100% !important;
    /* Forced full width */
    height: auto;
    display: block;
}

/* Honeypot field - hidden from users but visible to bots */
.cmg-honey {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    z-index: -999 !important;
}