/* النماذج الأمامية */
.alqirsh-subscription-form {
    max-width: 100%;
    margin: 20px 0;
}

.alqirsh-form-group {
    margin-bottom: 15px;
}

.alqirsh-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.alqirsh-form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.alqirsh-form-control:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.alqirsh-submit-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    width: 100%;
}

.alqirsh-submit-btn:hover {
    background: #005a87;
}

.alqirsh-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* الرسائل */
.alqirsh-messages {
    margin-bottom: 15px;
}

.alqirsh-alert {
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.alqirsh-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alqirsh-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alqirsh-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* الويدجت */
.alqirsh-widget-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.alqirsh-widget-description {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* حالة التحميل */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* التجاوب */
@media (max-width: 768px) {
    .alqirsh-form-control {
        padding: 12px 15px;
        font-size: 16px; /* منع التكبير في iOS */
    }
    
    .alqirsh-submit-btn {
        padding: 14px 24px;
    }
}