﻿/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.heading_container {
    text-align: center;
}

.btn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

    .btn-box a {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        background-color: #007bff;
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: bold;
        font-size: 16px;
        white-space: nowrap;
        transition: 0.3s;
    }

        .btn-box a:hover {
            background-color: #0056b3;
        }

.icon {
    font-size: 20px;
}

/* Modal Stili */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

/* Kapatma Butonu (X) */
.close {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
}

    .close:hover {
        color: #000;
    }

/* Form Tasarımı */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

textarea {
    resize: none;
}

select {
    cursor: pointer;
    background-color: #f8f9fa;
}

/* Gönder Butonu */
.submit-btn {
    background-color: #ffbe33;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: 0.3s;
}

    .submit-btn:hover {
        background-color: #218838;
    }

/* Başarı Modalı */
.success-modal {
    display: none;
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.success-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.success-icon {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 10px;
}

.success-message {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.success-close {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    margin-top: 15px;
    transition: 0.3s;
}

    .success-close:hover {
        background-color: #218838;
    }
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}