/* Tam sayfa modal stil */
.fullpage-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modal başlık */
.modal-header {
    text-align: right;
    padding: 10px 0;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #333;
}

/* Modal içerik */
.modal-body {
    padding: 20px 0;
    text-align: center;
}

.modal-body h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.modal-body p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.update-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 15px 0;
}

/* Modal alt kısım butonlar */
.modal-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0 10px;
    flex-wrap: wrap;
}

.btn-primary,.btn-primary2, .btn-secondary, .btn-tertiary {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1bd6b7;
    color: white;
}

.btn-primary:hover {
    background-color: #08a38f;
}
.btn-primary2 {
    background-color: #0e4a40;
    color: white;
}

.btn-primary2:hover {
    background-color: #08a38f;
}

.btn-secondary {
    background-color: #4722b5;
    color: white;
}

.btn-secondary:hover {
    background-color: #391be3;
}

.btn-tertiary {
    background-color: #194360;
    color: white;
}

.btn-tertiary:hover {
    background-color: #121b82;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary,.btn-primary2, .btn-secondary, .btn-tertiary {
        width: 100%;
    }
}