/* تنسيقات صفحة الدومينات */

/* الشبكة الرئيسية للدومينات - تم التعطيل لتجنب التعارض مع grid-system.css */
/* .domains-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)) !important;
    gap: 20px !important;
    padding: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    align-items: stretch !important;
} */

/* البطاقة المنفردة - تم التعطيل لتجنب التعارض مع domain-card.css */
/* .domain-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
} */

/* خلفية البطاقة حسب الحالة - تم التعطيل بالكامل لتجنب التعارض مع domain-card.css */
/* .domain-card.available {
    border-left: 4px solid #28a745;
}

.domain-card.taken {
    border-left: 4px solid #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.domain-card.taken::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%);
}

.domain-card.taken::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%);
    opacity: 0.5;
}

.domain-card.taken:hover {
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.15);
    transform: translateY(-5px);
}

.domain-card.taken .status-badge {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.domain-card.analyzing {
    border-left: 4px solid #ffc107;
}

.domain-card.pending_delete {
    border-left: 4px solid #fd7e14;
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.domain-card.pending_delete::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fd7e14 0%, #ff9f43 100%);
}

.domain-card.pending_delete::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #fd7e14 0%, #ff9f43 100%);
    opacity: 0.5;
}

.domain-card.pending_delete:hover {
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.15);
    transform: translateY(-5px);
}

.domain-card.pending_delete .status-badge {
    background: linear-gradient(135deg, #fd7e14 0%, #ff9f43 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(253, 126, 20, 0.3);
} */

/* Header: اسم الدومين في المنتصف */
.domain-header {
    padding: 40px 20px 20px; /* مساحة علوية أكبر عشان الشارة */
    text-align: center;
}

.domain-name-bg {
    background-color: #f4f4f4; /* نفس الخلفية الرمادية الفاتحة */
    padding: 12px 25px;       /* زيادة المسافات الداخلية ليعطي فخامة للكلمة */
    border-radius: 10px;
    display: inline-block;    /* عشان الخلفية تضل على قد الكلمة */
    
    /* التعديلات المطلوبة */
    font-size: 1.6rem;        /* تكبير الخط (تقريباً 24px-26px) */
    font-weight: 800;         /* جعل الخط عريض جداً (Extra Bold) */
    text-align: center;       /* ضمان توسيط النص */
    color: #333;              /* لون نص غامق وواضح */
    letter-spacing: 0.5px;    /* مسافة بسيطة بين الحروف لزيادة القراءة */
    min-width: 200px;         /* عرض أدنى عشان لو الكلمة قصيرة يضل شكلها حلو */
}

.domain-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* محتوى البطاقة - تم التعطيل لتجنب التعارض */
/* .card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
} */

/* حاوية الوسوم لضمان التوسيط تحت الاسم - تم التعطيل لتجنب التعارض مع domain-card.css */
/* .badges-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
} */

/* الفوتر المنظم - تم التعطيل لتجنب التعارض مع domain-card.css */
/* .card-footer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
    margin-top: auto;
} */

/* حاوية الأيقونات */
.action-buttons {
    display: flex;
    gap: 12px; /* مسافة كافية بين الأيقونات */
    align-items: center;
    flex-shrink: 0; /* لمنع الانكماش */
}

.action-buttons i {
    cursor: pointer;
    transition: color 0.3s;
    font-size: 1.1rem;
    color: #555;
}

/* أيقونة التحقق */
.verify-icon {
    color: #2ecc71; /* أخضر زاهي */
}

/* حاوية التاريخ */
.card-date {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    flex-shrink: 0; /* لمنع الانكماش */
}

/* تنسيق منطقة الأزرار في الأسفل */
.action-group-left .btn {
    margin: 0;
    padding: 8px 10px;
    min-width: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-group-left i {
    font-size: 18px;
    line-height: 1;
}

/* تنسيق الأزرار */
.btn {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #0d6efd;
    color: white;
}

.btn-outline-success {
    border-color: #198754;
    color: #198754;
    background: transparent;
}

.btn-outline-success:hover {
    background: #198754;
    color: white;
}

.btn-outline-info {
    border-color: #0dcaf0;
    color: #0dcaf0;
    background: transparent;
}

.btn-outline-info:hover {
    background: #0dcaf0;
    color: white;
}

.btn-outline-warning {
    border-color: #ffc107;
    color: #ffc107;
    background: transparent;
}

.btn-outline-warning:hover {
    background: #ffc107;
    color: #212529;
}

/* تنسيق الشارات العامة */
.badge {
    font-size: 15px;         /* تكبير الخط */
    padding: 8px 14px;       /* زيادة المساحة الداخلية */
    border-radius: 999px;    /* شكل دائري كامل */
    font-weight: 700;        /* خط عريض للوضوح */
    text-transform: uppercase;
    margin: 0 2px;
    display: inline-block;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

/* شارة الحالة */
.status-badge {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    margin: 0 2px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.status-available {
    background-color: #d4edda;
    color: #155724;
}

.status-taken {
    background-color: #f8d7da;
    color: #721c24;
}

.status-analyzing {
    background-color: #cce5ff;
    color: #004085;
}

.status-pending {
    background-color: #e2e3e5;
    color: #383d41;
}

.status-pending_delete {
    background-color: #fff3cd;
    color: #856404;
}

/* الشارة (السكور) فوق على اليمين - فقط في البطاقات */
.domain-card .score-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.score-high {
    background-color: #d4edda;
    color: #155724;
}

.score-medium {
    background-color: #fff3cd;
    color: #856404;
}

.score-low {
    background-color: #f8d7da;
    color: #721c24;
}
/* .domain-card {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    background-color: #fff;
    position: relative;
} */

/* .domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
} */

/* تنسيق بطاقة النوع Brandable - تم تعطيل هذه التنسيقات لصالح domains-grid.css */
/* .domain-card.brandable-type {
    border: 2px solid #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* تنسيق بطاقة النوع SEO */
/* .domain-card.seo-type {
    border: 2px solid #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
}

/* تنسيق بطاقة النوع GEO */
.domain-card.geo-type {
    border: 2px solid #ffc107;
    background: linear-gradient(135deg, #fffdf5 0%, #fff 100%);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.domain-card.geo-type::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffc107 0%, #ffdb58 100%);
}

.domain-card.geo-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffc107 0%, #ffdb58 100%);
    opacity: 0.5;
}

.domain-card.geo-type:hover {
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.25);
    transform: translateY(-5px);
}

/* تحسين شارة النوع GEO */
.domain-card.geo-type .badge {
    background: linear-gradient(135deg, #ffc107 0%, #ffdb58 100%);
    color: #212529;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

/* تنسيق بطاقة النوع Personal Brand */
.domain-card.personal-type {
    border: 2px solid #6f42c1;
    background: linear-gradient(135deg, #f8f5ff 0%, #fff 100%);
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.domain-card.personal-type::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6f42c1 0%, #9b6cd6 100%);
}

.domain-card.personal-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6f42c1 0%, #9b6cd6 100%);
    opacity: 0.5;
}

.domain-card.personal-type:hover {
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.25);
    transform: translateY(-5px);
}

/* تحسين شارة النوع Personal Brand */
.domain-card.personal-type .badge {
    background: linear-gradient(135deg, #6f42c1 0%, #9b6cd6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.3);
}

/* تنسيق بطاقة النوع Exact match */
.domain-card.exact-type {
    border: 2px solid #e83e8c;
    background: linear-gradient(135deg, #fff0f5 0%, #fff 100%);
    box-shadow: 0 0 10px rgba(232, 62, 140, 0.2);
    position: relative;
    overflow: hidden;
}

.domain-card.exact-type::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e83e8c 0%, #ff6b9d 100%);
}

.domain-card.exact-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e83e8c 0%, #ff6b9d 100%);
    opacity: 0.5;
}

.domain-card.exact-type:hover {
    box-shadow: 0 8px 20px rgba(232, 62, 140, 0.25);
    transform: translateY(-5px);
}

/* تحسين شارة النوع Exact Match */
.domain-card.exact-type .badge {
    background: linear-gradient(135deg, #e83e8c 0%, #ff6b9d 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(232, 62, 140, 0.3);
}

/* تنسيق رأس البطاقة - تم تعطيل هذه التنسيقات لصالح domains-grid.css */
/* .domain-card-header {
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
    border-bottom: 1px solid #dee2e6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
} */

/* .domain-card:hover .domain-card-header {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.domain-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #212529;
    word-break: break-all;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
}

.domain-card:hover .domain-name {
    color: #007bff;
} */

/* شارة Top Pick - تم تعطيل هذه التنسيقات لصالح domains-grid.css */
/* .top-pick-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
} */

/* تنسيق قسم الـ Insights - تم تعطيل هذه التنسيقات لصالح domains-grid.css */
/* .domain-card-insights {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.insight-left {
    flex: 1;
}

.insight-right {
    flex: 0 0 80px;
}

/* تنسيق شارة النوع */
.type-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
} */

/* .type-brandable {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.type-seo {
    background-color: #e8f5e9;
    color: #1b5e20;
}

.type-geo {
    background-color: #fff3e0;
    color: #e65100;
}

.type-personal {
    background-color: #f3e5f5;
    color: #4a148c;
}

.type-exact {
    background-color: #fce4ec;
    color: #880e4f;
} */

/* .type-general {
    background-color: #f5f5f5;
    color: #616161;
}

/* تنسيق عداد السكور الدائري - تم تعطيل هذه التنسيقات لصالح domains-grid.css */
/* .score-gauge {
    position: relative;
    width: 80px;
    height: 80px;
}

/* .circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
}

.circle.score-high {
    stroke: #28a745;
    animation: progress 1s ease-out forwards;
}

.circle.score-medium {
    stroke: #ffc107;
    animation: progress 1s ease-out forwards;
}

.circle.score-low {
    stroke: #dc3545;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage {
    fill: #666;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 0.5em;
    text-anchor: middle;
}

/* تنسيق قسم الأزرار - تم تعطيل هذه التنسيقات لصالح domains-grid.css */
/* .domain-card-actions {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-around;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
} */

/* .domain-card:hover .domain-card-actions {
    background-color: #e9ecef;
} */

/* .action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.action-btn:hover::before {
    width: 100%;
    height: 100%;
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.check-btn {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.check-btn:hover {
    background: linear-gradient(135deg, #138496, #117a8b);
}

.namecheap-btn {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

.namecheap-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #d94e20);
}

.namebright-btn {
    background: linear-gradient(135deg, #667eea, #764ba2); */
}

/* .namebright-btn:hover {
    background: linear-gradient(135deg, #764ba2, #6a4190);
}

.wayback-btn {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.wayback-btn:hover {
    background: linear-gradient(135deg, #e0a800, #d39e00);
} */

/* تنسيق الأزرار السريعة للتصنيف */
.filter-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.filter-container:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.category-pill {
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid #dee2e6;
    background-color: #fff;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-pill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.category-pill:hover::before {
    width: 200%;
    height: 200%;
}

.category-pill:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
    color: #007bff;
}

.category-pill.active {
    background: linear-gradient(135deg, #007bff, #0069d9);
    color: white;
    border-color: #007bff;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

.category-pill i {
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.category-pill:hover i {
    transform: scale(1.2);
}

/* تنسيق الفلاتر الإضافية */
.additional-filters {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.filter-group {
    flex: 1;
}

/* تنسيق شارة النقاط */
.score-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    position: absolute; /* تحديد الموقع المطلق */
    top: 10px; /* المسافة من الأعلى */
    right: 10px; /* المسافة من اليمين */
    z-index: 1; /* ضمان ظهورها فوق العناصر الأخرى */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* إضافة ظل خفيف */
}

.score-high {
    background-color: #d4edda;
    color: #155724;
}

.score-medium {
    background-color: #fff3cd;
    color: #856404;
}

.score-low {
    background-color: #f8d7da;
    color: #721c24;
}

/* تنسيق شارة الحالة */
.status-badge {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    margin: 0 4px; /* إضافة مسافات متساوية بين الشارات */
    display: inline-block; /* لضمان ظهور الشارات بجانب بعضها */
    line-height: 1.4;
}

.status-available {
    background-color: #d4edda;
    color: #155724;
}

.status-taken {
    background-color: #f8d7da;
    color: #721c24;
}

.status-analyzing {
    background-color: #cce5ff;
    color: #004085;
}

.status-pending {
    background-color: #e2e3e5;
    color: #383d41;
}

/* تنسيق شارة التصنيف */
.category-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin: 0 4px; /* إضافة مسافات متساوية بين الشارات */
    vertical-align: middle; /* محاذاة عمودية للشارات */
}

/* تنسيق قسم الشارات في البطاقة - تم التعطيل لتجنب التعارض */
/* .card-body .mb-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 15px;
} */

.category-ai {
    background-color: #e0e7ff;
    color: #667eea;
}

.category-real_estate {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.category-legal {
    background-color: #fff3e0;
    color: #e65100;
}

.category-health {
    background-color: #e8f5e9;
    color: #1b5e20;
}

.category-technology {
    background-color: #f3e5f5;
    color: #4a148c;
}

.category-education {
    background-color: #e0f2f1;
    color: #004d40;
}

.category-commerce {
    background-color: #fce4ec;
    color: #880e4f;
}

.category-finance {
    background-color: #fff8e1;
    color: #f57f17;
}

.category-media {
    background-color: #e1f5fe;
    color: #01579b;
}

.category-sports {
    background-color: #fbe9e7;
    color: #bf360c;
}

.category-travel {
    background-color: #e0f7fa;
    color: #006064;
}

.category-general {
    background-color: #f5f5f5;
    color: #616161;
}

/* تنسيق الأزرار */
.btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* تنسيق الصفحات */
.pagination {
    margin-top: 2rem;
}

.page-link {
    color: #007bff;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* تنسيق الفلاتر - تم التعطيل لتجنب التعارض مع Bootstrap */
/* .card {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
} */

/* .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    box-sizing: border-box;
    position: relative;
} */

.form-select {
    border-radius: 5px;
    border: 1px solid #ced4da;
}

/* تنسيق أيقونات Font Awesome */
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* تنسيق النصوص */
.text-muted {
    color: #6c757d !important;
}

.small {
    font-size: 0.875rem;
}

/* تنسيق الأيقونات في الأزرار */
.btn i {
    margin-right: 0;
}

/* تأثيرات التحويم */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* تنسيق الشارات */
.badge {
    font-size: 15px;         /* تكبير الخط */
    padding: 8px 14px;       /* زيادة المساحة الداخلية */
    border-radius: 999px;    /* شكل دائري كامل */
    font-weight: 700;        /* خط عريض للوضوح */
    text-transform: uppercase;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

/* الحاوية التي تضم البطاقات - تم تعطيل هذه التنسيقات لصالح domains-grid.css */
/* .domains-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 20px !important;
    padding: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
} */

/* إصلاح تعارض فئات Bootstrap مع نظام Grid - تم تعطيل هذه التنسيقات لصالح domains-grid.css */
/* .domains-container .domain-card {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
}

/* .domains-container .card-body {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
} */

/* .domains-container .card-footer {
    width: 100% !important;
    box-sizing: border-box !important;
} */ */

/* تنسيق Skeleton Loader */
.skeleton-loader {
    display: none;
    padding: 20px;
}

.skeleton-loader.active {
    display: block;
}

.skeleton-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.skeleton-header {
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.skeleton-insights {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.skeleton-type {
    width: 40%;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.skeleton-score {
    width: 80px;
    height: 80px;
    background-color: #e0e0e0;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.skeleton-actions {
    display: flex;
    justify-content: space-around;
}

.skeleton-btn {
    width: 45px;
    height: 45px;
    background-color: #e0e0e0;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

/* تأثير الحركة للـ Skeleton Loader */
.skeleton-header::before,
.skeleton-type::before,
.skeleton-score::before,
.skeleton-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* تنسيق رسالة عدم وجود دومينات */
.text-center.py-5 {
    padding: 3rem 0;
}

.text-center.py-5 i {
    margin-bottom: 1rem;
}

/* تنسيق التذييل */
.card-footer {
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* تنسيق العناوين */
h5.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* تنسيق التاريخ */
.domain-date {
    font-size: 0.75rem;
    color: #6c757d;
}

/* تنسيق الحالة - تم تعطيل هذه التنسيقات لصالح domains-grid.css */
/* .domain-card.available {
    border-left: 4px solid #28a745;
}

.domain-card.taken {
    border-left: 4px solid #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.domain-card.taken::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%);
}

.domain-card.taken:hover {
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.15);
    transform: translateY(-5px);
}

.domain-card.analyzing {
    border-left: 4px solid #007bff;
}

.domain-card.pending {
    border-left: 4px solid #6c757d;
} */

/* تنسيق الأزرار */
.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    background-color: #17a2b8;
    color: #fff;
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    background-color: #ffc107;
    color: #212529;
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: #fff;
}

/* تنسيق الأزرار المجموعة */
.btn-group {
    display: inline-flex;
    vertical-align: middle;
}

.btn-group > .btn {
    position: relative;
    flex: 1 1 auto;
}

/* تنسيق الشارات */
.badge {
    font-size: 15px;         /* تكبير الخط */
    padding: 8px 14px;       /* زيادة المساحة الداخلية */
    border-radius: 999px;    /* شكل دائري كامل */
    font-weight: 700;        /* خط عريض للوضوح */
    text-transform: uppercase;
    display: inline-block;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

/* تنسيق الأيقونات */
.fa-globe {
    font-size: 3rem;
}

/* تنسيق العناوين */
h3 {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
}

/* تنسيق الفلاتر */
.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* تنسيق القوائم */
.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}

/* تنسيق الصفحات */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

/* تنسيق الأزرار */
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* تنسيق الأزرار */
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-info:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

/* تنسيق الأزرار */
.btn-outline-primary:active {
    background-color: #007bff;
    color: #fff;
}

.btn-outline-info:active {
    background-color: #17a2b8;
    color: #fff;
}

.btn-outline-warning:active {
    background-color: #ffc107;
    color: #212529;
}

.btn-outline-success:active {
    background-color: #28a745;
    color: #fff;
}

/* تنسيق الأزرار */
.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}

.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

/* تنسيق الأزرار */
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

/* تنسيق الأزرار */
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

/* تنسيقات رسالة النسخ المنبثقة */
.copy-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.copy-toast i {
    font-size: 20px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
