.reconnect-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.reconnect-modal-content {
    background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 50%, #e91e63 100%);
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
    animation: slideIn 0.4s ease-out;
}

    .reconnect-modal-content h2 {
        margin-top: 0;
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: white !important;
    }

.reconnect-modal-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.reconnect-progress-container {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    height: 8px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.reconnect-progress-bar {
    height: 100%;
    width: 0;
    background-color: #fff!important;
    border-radius: 20px;
    transition: width 0.1s linear;
}

.reconnect-button {
    padding-block: 14px;
    padding-inline: 21px;
    background-color: #AF1685!important;
    border: none;
    color: white !important;
    transition: all 0.3s ease;
    align-items: center;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    color: #333333;
    margin: 0 !important;
    border-radius: 8px;
}

    .reconnect-button:hover {
        background-color: #1D4F91;
        transform: scale(1.05);
        cursor: pointer;
    }

    .reconnect-button:active {
        background-color: #173E71;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .reconnect-modal-content {
        width: 85%;
        padding: 1.5rem;
    }
}