/* Full Screen Overlay */
.modal-wrapper {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px); /* Modern blur effect */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* Central Card Box */
.userimage {
    background-color: #ffffff;
    border-radius: 12px;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    overflow: hidden;
    height: auto; /* Content ke hisab se adjust hoga */
}

/* Top Bar Styling */
.wait-plese {
    background-color: #006666; /* Trustina Teal Color */
    width: 100%;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
}

/* The Animated Spinner */
.imageseted {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 20px 0 10px 0;
    border: 3px solid rgba(0, 102, 102, 0.1);
    border-top: 3px solid #006666; /* Spinner Main Color */
    border-radius: 50%;
    animation: spin-loader 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    top: unset; /* Removing old positioning */
    left: unset;
}

/* Loading Text Styling */
.loading-texted {
    color: #555555;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    top: unset;
    left: unset;
}

/* Smooth Rotation Animation */
@keyframes spin-loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .userimage {
        width: 180px;
    }
}
