#loadingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.sending-email-container {
    display: flex;
    align-items: center;
    font-size: 1.5em;
    color: #007bff; /* Blue */
}

.sending-email-icon {
    animation: sendingEmailAnimation 2s linear infinite;
}

.arrow-icon {
    margin: 0 10px;
}

@keyframes sendingEmailAnimation {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}