.filepond--credits {
    display: none !important;
}

.filepond--drip {
    background-color: #e6f6ff !important;
    border: 2px dashed #46aae3 !important;
    opacity: 1 !important;
}

.filepond--drop-label>label b {
    border: 1px solid #46aae3;
    background-color: #46aae3;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 30px;
    border-radius: 16px;
    margin-bottom: 18px;
    margin-top: 30px;
    cursor: pointer;
    font-weight: 600;
}

.filepond--drop-label>label b:hover {
    background-color: #005192;
    color: #fff;
    box-shadow: 0 0 10px #46aae3;
}

.filepond--root .filepond--drop-label {
    height: 100% !important;
}

.filepond--root.filepond.filepond--hopper {
    min-height: 200px !important;
    margin: 2em 0;
}

.filepond--drop-label:hover {
    box-shadow: 0 0 10px #46aae3;
}


/* loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 999999999;
    display: none;
}

.loader {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 20px;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
    padding: 60px;
}

.loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #3498db;
    text-align: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}