/* === Sayfa Genel Yapısı === */
.eksrapor-container {
    max-width: 78.2rem;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9fcfd;
    border-radius: 1rem;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.eksrapor-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #d1e0e2;
}

/* === Başlık ve Logo === */
.eksrapor-logo {
    width: 130px;
    margin-bottom: 1.5rem;
}

.eksrapor-baslik {
    font-size: 2rem;
    font-weight: 700;
    color: #007782;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* === Tablo === */
.eksrapor-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.eksrapor-table th,
.eksrapor-table td {
    padding: 1rem;
    border: 1px solid #d1e0e2;
    background-color: #f5f9fa;
}

.eksrapor-table th {
    background-color: #007782;
    color: white;
    width: 200px;
    text-align: left;
}

/* === Fotoğraf Galerisi === */
.eksrapor-foto-galeri {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.eksrapor-foto-galeri img,
.small-foto {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: 0.3s ease;
}

.small-foto:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* === Modal (Fotoğrafı Büyütmek İçin) === */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.image-modal .modal-content {
    max-width: auto;
    max-height: 85%;
    border-radius: 0.75rem;
}

.image-modal .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* === Puanlama Formu === */
.eksrapor-form {
    margin-top: 2rem;
    background-color: #eef7f9;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #cfe3e7;
}

.eksrapor-form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    color: #007782;
}

.eksrapor-form select,
.eksrapor-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #c2d4d8;
    border-radius: 0.5rem;
    font-size: 1rem;
}

/* === İtiraz Modal === */
.itr-modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.itr-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}