
	.loading-container-busqueda-imagen {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    }

    .file-loader-busqueda-imagen {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .loader-content-busqueda-imagen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    }

    .file-box-busqueda-imagen {
    animation: bounce 2s infinite;
    }

    .loading-bar-busqueda-imagen {
    width: 200px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    }

    .loading-progress-busqueda-imagen {
    width: 0%;
    height: 100%;
    background: #3b82f6;
    border-radius: 3px;
    animation: progress 2s ease-in-out infinite;
    }

    .loading-text-busqueda-imagen {
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    }

    @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    }

    @keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
    }

    .file-base-busqueda-imagen {
    animation: fadeIn 0.5s ease-out;
    }

    .file-fold-busqueda-imagen {
    animation: foldDown 0.5s ease-out;
    }

    @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
    }

    @keyframes foldDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
    }

    .upload-container-syscom-ia {
        /* max-width: 600px; */
        /* margin: 20px auto; */
        /* padding: 20px; */
        padding: 0px 20px 20px 20px;
        font-family: Arial, sans-serif;
    }

    .drop-zone-syscom-ia {
        border: 2px dashed #ccc;
        border-radius: 4px;
        padding: 20px;
        text-align: center;
        background: #f9f9f9;
        cursor: pointer;
        margin-top: 20px;
        transition: border .3s ease-in-out;
    }

    .drop-zone-syscom-ia:hover {
        border-color: #666;
    }

    .drop-zone-syscom-ia.dragover {
        border-color: #2196f3;
        background: #e3f2fd;
    }

    .file-info-syscom-ia {
        margin-top: 20px;
        padding: 10px;
        border-radius: 4px;
        background: #e8e8e8;
        display: none;
    }

    .error-message-syscom-ia {
        color: #d32f2f;
        margin-top: 10px;
        display: none;
        padding: 10px;
        background: #ffebee;
        border-radius: 4px;
    }

    .success-message-syscom-ia {
        color: #2e7d32;
        margin-top: 10px;
        display: none;
        padding: 10px;
        background: #e8f5e9;
        border-radius: 4px;
    }


    .upload-icon-busqueda-imagen {
        width: 4rem;
        height: 4rem;
        background-color: white;
        border-radius: 50%;
        padding: 1rem;
        margin: 0 auto 1.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transition: transform 200ms;
    }

    .upload-icon-busqueda-imagen svg {
      width: 100%;
      height: 100%;
      color: #3b82f6;
    }

    .upload-text-busqueda-imagen {
      margin-bottom: 0.75rem;
      font-size: 1.25rem;
      font-weight: 500;
      color: #374151;
    }

    .upload-subtext-busqueda-imagen {
      color: #374151;
      margin-bottom: 1.5rem;
      font-size: 0.875rem;
    }    