body {
    font-family: 'Cairo', sans-serif;
    background-color: #64443e;
}
.header img {
    width: 100%;
    height: auto;
}

.scratchpad{
    width: 100%;
    height: 445px;
    border: solid 10px #FFFFFF;
    margin:0 auto;
}
body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-select {
    padding: .5rem 1rem;
}

.header .language {
    color: white;
    background: #64443e;
    text-align: center;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.header .language a {
    font-size: 18px;
    text-decoration: none;
    color: #612b19;
    font-weight: bold;
    background: #dbb96f;
    border-radius: 2px;
    padding: 3px 8px;
}

.header .language a:hover {
    color: #f1e0d6;
}

.form-section {
    background: rgb(100 68 62);
    color: #FFF;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: "";
    /*background-image: url(/assets/images/mm.jpg);*/
    background-color:#8e4325;
    background-repeat: no-repeat repeat;
    background-size: 950px;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#draw-form {
    position: relative;
    z-index: 1; /* يخلي الفورم فوق الخلفية */
    border-radius: 25px;
    background-color: #ecd88f;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#draw-form input,#draw-form select {
    border: 2px solid transparent;
    background-color: #6c4339;
    color: #FFF;
    font-size: 18px;
    border-radius: 20px 10px;
    font-weight:700;
}

#draw-form input::placeholder {
    color: #FFF;
    font-weight: bold;
}

#draw-form input:focus,#draw-form select:focus {
    box-shadow: unset;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.scratchpad {
  touch-action: pan-y !important; /* يسمح بالسكرول الرأسي */
}

