/* === GENEL KAPSAYICI === */
.eksp-container {
    max-width: 78.2rem;
    margin: 9rem auto;
    padding: 2rem;
    background-color: #f9fcfd;
    border-radius: 1rem;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.eksp-title {
    font-size: 2rem;
    color: #007782;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

/* === BÖLÜM === */
.eksp-section {
    margin-bottom: 2rem;
}

.eksp-section h4 {
    font-size: 1.25rem;
    color: #007782;
    border-bottom: 1px solid #cddfea;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* === INPUTLAR === */
.eksp-section input[type="text"],
.eksp-section input[type="datetime-local"],
.eksp-section textarea,
.eksp-section select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cfd8dc;
    border-radius: 0.5rem;
    background-color: #fff;
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    transition: border 0.2s ease-in-out;
}

.eksp-section textarea {
    resize: vertical;
}

.eksp-section input:focus,
.eksp-section textarea:focus,
.eksp-section select:focus {
    border-color: #007782;
    outline: none;
}

/* === HATA MESAJLARI === */
.eksp-error {
    color: #c00;
    font-size: 0.875rem;
}

/* === CHECKBOX VE RADIO === */
.eksp-checkbox,
.eksp-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.eksp-checkbox label,
.eksp-radio label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === GÖRSEL ÖNİZLEME === */
.eksp-preview {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.eksp-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
}

/* === BUTON === */
.eksp-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #007782;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.eksp-btn:hover {
    background-color: #005f66;
}
