/* أنماط صفحة التعديل */
.safrah-edit-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 2rem;
}

.safrah-edit-card {
    width: 100%;
    max-width: 700px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.safrah-edit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.safrah-edit-header {
    background: linear-gradient(135deg, #882f42 0%, #de778d 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.safrah-edit-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.safrah-edit-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.safrah-edit-body {
    padding: 2rem;
}

.safrah-edit-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.safrah-form-group {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.safrah-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.safrah-field-label {
    font-weight: 600;
    color: #444;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.safrah-required {
    color: #f44336;
    margin-right: 0.3rem;
}

.safrah-edit-form input,
.safrah-edit-form textarea,
.safrah-edit-form select {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.safrah-edit-form input:focus,
.safrah-edit-form textarea:focus,
.safrah-edit-form select:focus {
    border-color: #4a6bff;
    box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
    outline: none;
    background-color: #fff;
}

.safrah-edit-form textarea {
    min-height: 120px;
    resize: vertical;
}

.safrah-help-text {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.safrah-error-message {
    color: #f44336;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.safrah-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.safrah-save-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.safrah-save-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.safrah-cancel-btn {
    background: linear-gradient(135deg, #607d8b 0%, #455a64 100%);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(96, 125, 139, 0.3);
}

.safrah-cancel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(96, 125, 139, 0.4);
    background: linear-gradient(135deg, #607d8b 0%, #37474f 100%);
    color: white;
}

/* تأثيرات الحركة */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.safrah-edit-card {
    animation: slideIn 0.5s ease forwards;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .safrah-edit-container {
        padding: 1rem;
    }
    
    .safrah-edit-title {
        font-size: 1.5rem;
    }
    
    .safrah-form-actions {
        justify-content: center;
    }
    
    .safrah-save-btn, 
    .safrah-cancel-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .safrah-edit-body {
        padding: 1.5rem;
    }
    
    .safrah-form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .safrah-save-btn,
    .safrah-cancel-btn {
        width: 100%;
        justify-content: center;
    }
}