
body {
    background-color: #0d0d0d;
    color: white;
    direction: ltr;
    text-align: right;
}

/* النموذج */
.apply-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(153, 205, 52, 0.1);
}

/* المجموعات */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

/* تسميات الحقول */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
}

/* الحقول */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(153, 205, 52, 0.2);
    border-radius: 10px;
    background: #1f1f1f;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    direction: rtl;
}

/* التركيز على الحقول */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #2a2a2a;
    border-color: #99cd34;
}

/* الخيارات داخل select */
.form-group select option {
    background: #1f1f1f;
    color: #fff;
}

/* زر الإرسال */
.submit-btn {
    background-color: #99cd34;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #84b22f;
    transform: translateY(-2px);
}

/* textarea */
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* g-recaptcha */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* زر تسجيل الخروج */
.logout-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #cc0000;
}

/* سهم التحديد */
.form-group select::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #99cd34;
    border-bottom: 2px solid #99cd34;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    opacity: 0.8;
}

/* تحسينات على القوائم */
select::-webkit-scrollbar {
    width: 8px;
}
select::-webkit-scrollbar-track {
    background: #0D0D0D;
}
select::-webkit-scrollbar-thumb {
    background: #99cd34;
    border-radius: 4px;
}
select::-webkit-scrollbar-thumb:hover {
    background: #7ba829;
}
