.custom-loader-wrapper {
    display: none;
    position: absolute; /* পপ-আপের মধ্যে পজিশন করার জন্য */
    top: 50%; /* উল্লম্বভাবে মাঝখানে আনতে */
    left: 50%; /* আনুভূমিকভাবে মাঝখানে আনতে */
    transform: translate(-50%, -50%); /* সঠিক মাঝখানে রাখার জন্য */
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.custom-loader::before,
.custom-loader::after {
    content: "";
    position: absolute;
    border: 6px solid transparent;
    border-radius: 50%;
    inset: 0;
    animation: spin 1.5s linear infinite;
}

.custom-loader::before {
    border-top-color: #ff0000;
}

.custom-loader::after {
    border-bottom-color: #27ae60;
    animation-direction: reverse;
}
