.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
}

.modal-content p {
    margin-bottom: 1em;
}

.tg-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tg-login-btn {
    display: inline-block;
    background-color: #2AABEE;
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.tg-login-btn:hover {
    background-color: #1a96d4;
    color: #ffffff;
}