/* instagram-popup.css */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
    /* Ortalama için ek özellikler */
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
}

.close-popup {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-popup:hover {
    color: #333;
}

.popup-header {
    margin-bottom: 20px;
}

.popup-header img {
    width: 250px;
    height: 70px;
    margin-bottom: 20px;
}

.popup-header h3 {
    margin: 0;
    color: #262626;
    font-size: 20px;
}

.popup-body p {
    color: #666;
    margin-bottom: 20px;
}

.follow-button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    border-style: solid;
    border-width: 1px;
    border-color: #e1316c;
}

.follow-button:hover {
    background-color: #e1316c;
    color: #fff;
}

/* Mobil cihazlar için düzenlemeler */
@media (max-width: 480px) {
    .popup-content {
        width: 85%;
        padding: 20px;
        /* Mobilde de ortalı kalmasını sağlama */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}