.child-section {
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #dee2e6;
    padding: 25px;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.child-section:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
}

select {
  appearance: auto !important; /* إزالة السهم الافتراضي */
  -webkit-appearance: auto !important; /* لمتصفحات Safari */
  -moz-appearance: auto !important; /* لمتصفحات Firefox */
  padding-right: 30px; /* لإفساح المجال للسهم الجديد إذا أردت إضافته */
  background-color: white; /* تعيين لون خلفية */
}

.child-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.child-title {
    color: #495057;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.btn-delete {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.children-container {
    margin-top: 30px;
}

.children-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.btn-add-child {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-add-child:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}
