﻿
body {
    font-family: 'Vazir', sans-serif;
    direction: rtl;
    text-align: right;
    padding: 10px;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: right;
    direction: ltr;
    caret-color: #0d6efd; /* رنگ مکان‌نما چشمک زن */
}

    /* مکان‌نمای چشمک‌زن */
    input:focus {
        outline: none;
    }

#virtual-keyboard {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 99%;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
}

.key {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 3px;
    text-align: center;
    line-height: 50px;
    background-color: #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 25px;
}

    .key:hover {
        background-color: #ccc;
    }

    .key:active {
        background-color: #bbb;
    }

.key-space {
    width: 150px; /* فضای بیشتر برای دکمه فاصله */
    background-color: #e0e0e0;
    font-size: 18px;
    display: inline-block;
    height: 80px;
    border-radius: 5px;
    margin: 5px;
    text-align: center;
    line-height: 50px;
}

.key-backspace,
.key-close {
    width: 60px;
    background-color: #ff9800;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    display: inline-block;
    height: 80px;
    border-radius: 5px;
    margin: 5px;
    text-align: center;
    line-height: 50px;
}

.key-close {
    background-color: #f44336;
}

/* طراحی کیبورد برای دستگاه‌های کوچک */
@media (max-width: 765px) {
    .key {
        width: 35px;
        height: 55px;
        font-size: 20px;
        margin: 1px;
    }

    .key-space {
        width: 130px; /* عرض کمتر در دستگاه‌های کوچکتر */
        height: 55px;
        font-size: 20px;
        display: inline-block;
        border-radius: 5px;
        margin: 1px;
        text-align: center;
        line-height: 50px;
    }

    .key-backspace,
    .key-close {
        height: 55px;
        font-size: 20px;
        border-radius: 5px;
        margin: 1px;
        text-align: center;
        line-height: 50px;
        display: inline-block;
        width: 30%; /* اندازه دکمه‌های ویژه */
    }
}

