/* تنسيقات الهواتف المحمولة لأكاديمية درة الإتقان */
@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
        padding: 0;
        margin: 0;
    }
    .wrap {
        padding: 10px;
        margin: 0 auto;
    }
    input[type="text"], 
    input[type="email"], 
    input[type="password"], 
    select, 
    textarea {
        width: 100% !important;
        box-sizing: border-box;
        font-size: 16px; /* يمنع التكبير التلقائي المزعج في آيفون عند الكتابة */
    }
}

/* زر الإجراء العائم للهواتف الذكية */
@media screen and (max-width: 768px) {
    .dita-mobile-fab {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #0073aa;
        color: #fff;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 9999;
        text-decoration: none;
        transition: background-color 0.2s ease, box-shadow 0.2s ease;
    }
    .dita-mobile-fab:hover,
    .dita-mobile-fab:active {
        background-color: #005177;
        box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    }
    .dita-mobile-fab svg {
        width: 24px;
        height: 24px;
        stroke: #ffffff;
        fill: none;
    }
}
