/* Genel modal stil ve içerik */
#modal {
    margin: auto;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 85%; /* Default genişlik */
    height: 40%;
    background-color: black;
    padding: 20px;
    border: 3px solid #c2d916;
    border-radius: 10px;
    display: flex;
    flex-direction: column; /* İçeriklerin dikey hizalanması */
    align-items: center;
    justify-content: space-between;
}

/* Alert container */
.alert-container {
    display: flex;
    align-items: center;
}

.alert-icon {
    width: 40px;
    height: 40px;
    stroke: #c2d916;
}

.alert-text {
    font-family: 'Monospace', sans-serif;
    color: #c2d916;
    font-size: 1.4rem;
}

.alert-message {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.start-button {
    width: 100%;
    padding: 10px;
    background-color: black;
    color: #c2d916;
    border: 2px solid #c2d916;
    text-align: center;
    font-size: 1rem;
}

/* Responsive düzenlemeler */
@media (max-width: 770px) {
    .modal-content {
        width: 100%; /* Orta büyüklükteki ekranlar için genişlik */
        height: 60%; /* Orta büyüklükteki ekranlar için yükseklik */
    }

    .alert-icon {
        width: 50px;
        height: 50px;
    }

    .alert-text {
        font-size: 8rem; /* Başlık boyutunu daha da küçült */
    }

    .alert-message {
        font-size: 10px !important; /* Mesaj boyutunu küçült */
    }

    .start-button {
        padding: 10px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 90%; /* Mobil ekranlar için daha küçük genişlik */
        height: 30%; /* Mobil ekranlar için daha büyük yükseklik */
    }

    .alert-icon {
        width: 50px;
        height: 50px;
    }

    .alert-text {
        font-size: 5rem; /* Başlık boyutunu daha da küçült */
    }

    .alert-message {
        font-size: 0.5rem; /* Mesaj boyutunu küçült */
    }

    .start-button {
        padding: 5px !important;
        font-size: 0.7rem !important;
    }
}
