/* RTL desteği için import */
@import url('./rtl.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Zoom engelleme */
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    line-height: normal;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    /* Double-tap zoom engelleme */
    touch-action: manipulation;
}

/* Tüm input ve textarea'lar için zoom engelleme */
input, textarea, select {
    font-size: 16px !important; /* iOS zoom'u engeller */
    touch-action: manipulation;
}