/* --- Teknik Detay Görüntüleme Sayfası Stilleri --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #e5e7eb;
    color: #1f2937;
    margin: 0;
    padding: 20px;
}
.page-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* --- Header --- */
.pdf-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid #f97116;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.pdf-header .logo img {
    max-height: 60px;
}
.pdf-header .header-info h1 {
    margin: 0;
    font-size: 24px;
    color: #111827;
}
.pdf-header .header-info p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* --- İçerik Alanı --- */
.content .info-section {
    margin-bottom: 30px;
}
.content .info-section h2 {
    font-size: 18px;
    color: #f97116;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.content .info-value {
    font-size: 14px;
    line-height: 1.6;
}
/* TinyMCE Tabloları için Stiller */
.info-value table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}
.info-value th, .info-value td {
    border: 1px solid #d1d5db;
    padding: 8px 12px;
    text-align: left;
}
.info-value th {
    background-color: #f3f4f6;
    font-weight: 600;
}

/* --- Footer --- */
.pdf-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}
.pdf-footer p {
    margin: 5px 0;
}

/* --- Yazdırma Butonu --- */
.print-button {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    background-color: #f97116;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.print-button:hover {
    background-color: #ea580c;
}

/* --- YAZDIRMA STİLLERİ --- */
@media print {
    body {
        background-color: #fff;
        padding: 0;
    }
    .page-container {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    .print-button {
        display: none;
    }
}
