@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Serif:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.dilekce-font {
    font-family: 'Noto Serif', serif;
}

/* A4 Page Simulation */
.a4-page {
    width: 210mm;
    min-height: 297mm;
    padding: 25mm 20mm;
    /* Standart dilekçe kenar boşlukları */
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Scale Wrapper for Responsive Preview */
.scale-wrapper {
    transform-origin: top center;
    transition: transform 0.2s ease-out;
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }

    #preview-area,
    #preview-area * {
        visibility: visible;
    }

    #preview-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
}

/* Form Focus Ring Customization */
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Scrollbar Customization for Form Panel */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}