﻿
 .main-card {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .card-header {
            background: white;
            padding: 20px 25px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .card-header h3 {
            margin: 0;
            color: #2c3e50;
            font-size: 1.5rem;
        }
        
        .form-section {
            padding: 25px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .section-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            display: inline-block;
        }
        
        /* تنسيق الحقول بشكل أفقي */
        .location-row {
            margin-bottom: 20px;
        }
        
        .location-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            display: block;
             text-align: right;
    direction: rtl;
        }
        
        .language-buttons-group {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
             border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 5px;
    background: #fafafa;
        }
        
        .lang-input-wrapper {
            flex: 1;
            min-width: 100%;
        }
        
        .lang-input-group {
            display: flex;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            transition: all 0.2s;
                border: 1px solid #000;
    border-radius: 6px;
    background: white;
        }
 
        .lang-input-group:focus-within {
            border-color: #3498db;
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        .lang-badge {
            background: #f8f9fa;
            padding: 8px 15px;
            font-weight: 600;
            font-size: 0.85rem;
            border-right: 1px solid #dee2e6;
            display: flex;
            align-items: center;
            gap: 5px;
            min-width: 70px;
        }
        
        .lang-badge i {
            font-size: 0.9rem;
        }
        
        .lang-badge.ar {
            color: #2ecc71;
        }
        
        .lang-badge.de {
            color: #e67e22;
        }
        
        .lang-badge.en {
            color: #3498db;
        }
        
        .lang-input-group input {
            flex: 1;
            border: none;
            padding: 8px 12px;
            outline: none;
            font-size: 0.9rem;
        }
        
        /* أزرار التحكم */
        .action-buttons {
            margin-top: 25px;
            text-align: center;
        }
        
        .btn-save {
            background: #008373  ;
            border: none;
            padding: 10px 30px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            margin: 0 5px;
            font-style :normal ;
        }
        
        .btn-update {
            background: #004b8d;
            border: none;
            padding: 10px 30px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            margin: 0 5px;
        }
        
        .btn-cancel {
            background: #a6352d;
            border: none;
            padding: 10px 30px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            margin: 0 5px;
        }
        
        .btn-search {
            background: #3498db;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            color: white;
        }
        
        /* جدول البيانات */
        .table-container {
            padding: 25px;
            overflow-x: auto;
        }
 
        .data-table {
            width: 100%;
            border-collapse: collapse;
            
        }
        
        .data-table th {
           background: #316cb3 ;
            color: white;
            padding: 6px;
            text-align: center;
            font-weight: 600;
        }
        
        .data-table td {
            padding: 5px;
            text-align: center;
            border-bottom: 1px solid #ecf0f1;
        }
        
        .data-table tr:hover {
            background: #f8f9fa;
        }
        
        .edit-btn, .delete-btn 
        {
            
            background: none;
            border: none;
            cursor: pointer;
            margin: 0 5px;
         
        }
        
        .edit-btn {
            color: #3498db;
        }
        
        .delete-btn {
            color: #e74c3c;
        }
        
        .search-box {
            margin-bottom: 20px;
            display: flex;
            gap: 10px;
          
        }
        
        .search-box input {
            flex: 1;
            padding: 8px 15px;
            border: 1px solid #dee2e6;
            border-radius: 20px;
            outline: none;
               border: 1px solid #000; 
 
        }
        
        .required:after {
            content: "*";
            color: #e74c3c;
            margin-left: 5px;
        }
        
        .alert-message {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            min-width: 300px;
            animation: slideIn 0.3s ease;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
 