.gobo-uploader-wrapper {
    margin: 0 0 10px 0;
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    
    /* FIX 1: Force it to take up 100% of the available area */
    width: 100%;
    box-sizing: border-box;
    display: block;
    clear: both;
}

.gobo-uploader-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3338;
}

.gobo-upload-note {
    margin-top: 12px !important;
    font-size: 13px !important;
    color: #646970;
}

.dropzone {
    border: 2px dashed #1c79b7;
    border-radius: 5px;
    background: #fcfcfc;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: background 0.2s ease-in-out;
}

.dropzone:hover {
    background: #f0f6fc;
}

.dropzone .dz-message {
    font-size: 16px;
    color: #1c79b7;
    font-weight: 500;
    margin: 0;
    width: 100%;
}

/* FIX 2: Replaced the Folder emoji with a clean SVG Image/File Document Icon */
.dropzone .dz-message::before {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px auto;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23007cba" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline><circle cx="10" cy="13" r="2"></circle><polyline points="20 17 15 12 8 19"></polyline></svg>') no-repeat center;
    background-size: contain;
}

.gobo-order-logo img {
    margin-top: 8px;
    display: block;
    border-radius: 4px;
}
/* Styling for the native "Remove File" button */
.dropzone .dz-preview .dz-remove {
    color: #cc1818;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    transition: all 0.2s ease;
}

.dropzone .dz-preview .dz-remove:hover {
    color: #8c0d0d;
}