/* .table-responsive {
    overflow: visible !important;
}

.select2-container {
    z-index: 9999 !important;
} */


.asset-link {
    color: inherit !important;
    text-decoration: none !important;
}

.asset-link:hover {
    color: blue !important;
    text-decoration: underline !important;
}
/* Dropzone Styling */
#gallery-dropzone {
    border: 2px dashed #cbd5e0;
    background-color: #f9fafb;
    border-radius: 12px;
    min-height: 250px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover effect */
#gallery-dropzone:hover {
    background-color: #edf2f7;
    border-color: #a0aec0;
}

/* Dropzone message */
#gallery-dropzone .dz-message {
    color: #718096;
    font-weight: 500;
    font-size: 16px;
    margin-top: 4em;
}

/* Dropzone previews (thumbnails) */
#gallery-dropzone .dz-preview {
    display: inline-block;
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    vertical-align: top;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Thumbnail image */
#gallery-dropzone .dz-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

/* Remove link styling */
#gallery-dropzone .dz-remove {
    color: #e53e3e;
    font-weight: 500;
    text-decoration: none;
    margin-top: 5px;
    display: block;
}

#gallery-dropzone .dz-remove:hover {
    text-decoration: underline;
}

/* Success / Error states */
#gallery-dropzone .dz-success-mark svg,
#gallery-dropzone .dz-error-mark svg {
    width: 25px;
    height: 25px;
}
