/* _content/ProDigitalTools/Pages/About.razor.rz.scp.css */
.static-container[b-4ieha3ss7t] {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

h1[b-4ieha3ss7t], h3[b-4ieha3ss7t] {
    color: #333;
    font-weight: 600;
    margin-top: 25px;
    text-align: right;
}

p[b-4ieha3ss7t] {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: right;
}

ul[b-4ieha3ss7t] {
    padding-right: 20px;
    color: #555;
    line-height: 1.6;
    text-align: right;
    direction: rtl;
}

li[b-4ieha3ss7t] {
    margin-bottom: 8px;
}
/* _content/ProDigitalTools/Pages/AdminChat.razor.rz.scp.css */
.admin-chat-title[b-3ry0csfurm] {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
}

.admin-chat-container[b-3ry0csfurm] {
    max-width: 900px;
    margin: 2rem auto;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.admin-chat-msg[b-3ry0csfurm] {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    position: relative;
    transition: background-color 0.3s ease;
}

.user-msg[b-3ry0csfurm] {
    background-color: #dff5ff;
    border-right: 6px solid #3498db;
    text-align: right;
}

.support-msg[b-3ry0csfurm] {
    background-color: #f9f9f9;
    border-left: 6px solid #2ecc71;
    text-align: left;
}

.admin-chat-msg strong[b-3ry0csfurm] {
    display: block;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.admin-chat-msg p[b-3ry0csfurm] {
    margin: 0;
    color: #444;
    font-size: 1rem;
}

.timestamp[b-3ry0csfurm] {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #888;
}

.admin-reply-box[b-3ry0csfurm] {
    max-width: 900px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

    .admin-reply-box textarea[b-3ry0csfurm] {
        resize: none;
        height: 100px;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
        border: 1px solid #ccc;
        font-family: 'Cairo', sans-serif;
        transition: border 0.3s ease;
    }

        .admin-reply-box textarea:focus[b-3ry0csfurm] {
            outline: none;
            border-color: #3498db;
        }

.send-reply-btn[b-3ry0csfurm] {
    align-self: flex-end;
    background-color: #3498db;
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .send-reply-btn:hover[b-3ry0csfurm] {
        background-color: #2980b9;
    }

@media (max-width: 600px) {
    .admin-chat-container[b-3ry0csfurm], .admin-reply-box[b-3ry0csfurm] {
        padding: 1rem;
        margin: 1rem;
    }

    .send-reply-btn[b-3ry0csfurm] {
        width: 100%;
    }
}


.chat-layout[b-3ry0csfurm] {
    display: flex;
    gap: 20px;
}

.user-list[b-3ry0csfurm] {
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    padding: 1rem;
    height: 500px;
    overflow-y: auto;
}

.user-tab[b-3ry0csfurm] {
    padding: 10px;
    margin-bottom: 8px;
    background-color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid transparent;
}

    .user-tab:hover[b-3ry0csfurm] {
        background-color: #e9f7ff;
    }

    .user-tab.active[b-3ry0csfurm] {
        background-color: #007bff;
        color: #fff;
        font-weight: bold;
        border-color: #007bff;
    }

.chat-section[b-3ry0csfurm] {
    flex-grow: 1;
    max-width: 800px;
}

.admin-chat-container[b-3ry0csfurm] {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    max-height: 400px;
    overflow-y: auto;
}

.admin-chat-msg[b-3ry0csfurm] {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
}

.user-msg[b-3ry0csfurm] {
    background-color: #e9f7ff;
    border-right: 4px solid #007bff;
}

.support-msg[b-3ry0csfurm] {
    background-color: #f2f2f2;
    border-left: 4px solid #28a745;
    text-align: left;
}

.admin-chat-msg strong[b-3ry0csfurm] {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.admin-chat-msg p[b-3ry0csfurm] {
    margin: 0;
    color: #555;
}

.timestamp[b-3ry0csfurm] {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #888;
    text-align: left;
}

.admin-reply-box[b-3ry0csfurm] {
    margin-top: 1rem;
}

    .admin-reply-box textarea[b-3ry0csfurm] {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ccc;
        min-height: 80px;
    }

.send-reply-btn[b-3ry0csfurm] {
    margin-top: 0.5rem;
    padding: 8px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

    .send-reply-btn:hover[b-3ry0csfurm] {
        background-color: #218838;
    }
/* _content/ProDigitalTools/Pages/AdminDashboard.razor.rz.scp.css */
/* 🟦 العنوان الرئيسي */
.main-title[b-icbzil4tmt] {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/* 🟢 كروت الإحصائيات */
.stats-cards[b-icbzil4tmt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card[b-icbzil4tmt] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-family: 'Cairo', sans-serif;
    transition: transform 0.3s;
}

    .stat-card i[b-icbzil4tmt] {
        font-size: 30px;
    }

    .stat-card:hover[b-icbzil4tmt] {
        transform: translateY(-5px);
    }

    /* 🎨 ألوان حسب النوع */
    .stat-card.red[b-icbzil4tmt] {
        background-color: #e74c3c;
    }

    .stat-card.green[b-icbzil4tmt] {
        background-color: #27ae60;
    }

    .stat-card.orange[b-icbzil4tmt] {
        background-color: #f39c12;
    }

    .stat-card.blue[b-icbzil4tmt] {
        background-color: #3498db;
    }

/* 👤 جدول المستخدمين */
.recent-users[b-icbzil4tmt] {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

    .recent-users h2[b-icbzil4tmt] {
        margin-bottom: 15px;
        font-size: 20px;
        color: #333;
    }

    .recent-users table[b-icbzil4tmt] {
        width: 100%;
        border-collapse: collapse;
    }

    .recent-users th[b-icbzil4tmt],
    .recent-users td[b-icbzil4tmt] {
        padding: 12px;
        text-align: right;
        border-bottom: 1px solid #eee;
    }

    .recent-users th[b-icbzil4tmt] {
        background-color: #f0f0f0;
        color: #555;
    }

.stat-card.purple[b-icbzil4tmt] {
    background-color: #9b59b6;
    color: white;
}


/* 🧷 Responsive */
@media (max-width: 768px) {
    .stats-cards[b-icbzil4tmt] {
        grid-template-columns: 1fr;
    }
}
/* _content/ProDigitalTools/Pages/AdminOrders.razor.rz.scp.css */
.filters[b-mlcl0slucj] {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: start;
}

.search-box[b-mlcl0slucj],
.status-filter[b-mlcl0slucj] {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 15px;
    width: 220px;
    background-color: white;
}

.filter-btn[b-mlcl0slucj], .reset-btn[b-mlcl0slucj] {
    padding: 10px 16px;
    background-color: #1e88e5;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.reset-btn[b-mlcl0slucj] {
    background-color: #6c757d;
}

.filter-btn:hover[b-mlcl0slucj] {
    background-color: #1565c0;
}

.reset-btn:hover[b-mlcl0slucj] {
    background-color: #5a6268;
}

.orders-table[b-mlcl0slucj] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
}

    .orders-table th[b-mlcl0slucj],
    .orders-table td[b-mlcl0slucj] {
        padding: 14px;
        text-align: center;
        border-bottom: 1px solid #e9ecef;
    }

    .orders-table th[b-mlcl0slucj] {
        background-color: #007acc;
        color: white;
        font-weight: bold;
    }

    .orders-table tr:nth-child(even)[b-mlcl0slucj] {
        background-color: #f2f2f2;
    }

    .orders-table tr:hover[b-mlcl0slucj] {
        background-color: #e6f0ff;
    }


.status-select[b-mlcl0slucj] {
    padding: 4px;
    font-weight: bold;
    border-radius: 4px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
}


/* تلوين خلفية الحالة حسب النوع */
.status-paid[b-mlcl0slucj] {
    background-color: #d4edda; /* أخضر فاتح */
    color: #155724;
}

.status-rejected[b-mlcl0slucj] {
    background-color: #f8d7da; /* أحمر فاتح */
    color: #721c24;
}

.status-awaiting[b-mlcl0slucj] {
    background-color: #fff3cd; /* أصفر فاتح */
    color: #856404;
}


.row-paid[b-mlcl0slucj] {
    background-color: #d4edda !important; /* أخضر فاتح */
    color: #155724;
}

.row-rejected[b-mlcl0slucj] {
    background-color: #f8d7da !important; /* أحمر فاتح */
    color: #721c24;
}

.row-awaiting[b-mlcl0slucj] {
    background-color: #fff3cd !important; /* أصفر فاتح */
    color: #856404;
}


.order-link[b-mlcl0slucj] {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .order-link:hover[b-mlcl0slucj] {
        color: #0056b3;
        text-decoration: underline;
    }


.pagination-controls[b-mlcl0slucj] {
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

    .pagination-controls button[b-mlcl0slucj] {
        margin: 5px;
        padding: 8px 14px;
        border-radius: 6px;
        border: none;
        background-color: #007acc;
        color: white;
        cursor: pointer;
    }

        .pagination-controls button:disabled[b-mlcl0slucj] {
            background-color: #ccc;
            cursor: not-allowed;
        }
/* _content/ProDigitalTools/Pages/AdminSettings.razor.rz.scp.css */
.settings-title[b-cmja7b0ej9] {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 1rem;
    text-align: center;
}

.settings-form[b-cmja7b0ej9] {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    font-family: 'Cairo', sans-serif;
}

.input[b-cmja7b0ej9] {
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.logo-preview[b-cmja7b0ej9] {
    width: 120px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.save-btn[b-cmja7b0ej9] {
    background-color: #28a745;
    color: white;
    padding: 0.7rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
}
/* _content/ProDigitalTools/Pages/Admin/AdminProducts.razor.rz.scp.css */
.settings-title[b-3wrqjnxfqf] {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
}

.settings-form[b-3wrqjnxfqf] {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Cairo', sans-serif;
}

.input[b-3wrqjnxfqf] {
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
}

.logo-preview[b-3wrqjnxfqf] {
    width: 100px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    align-self: center;
}

.save-btn[b-3wrqjnxfqf] {
    background-color: #28a745 !important;
    color: white !important;
    padding: 0.7rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    margin-top: 1rem;
}
/* _content/ProDigitalTools/Pages/Buy.razor.rz.scp.css */
.loading-container[b-d121qvog03] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.loading-message[b-d121qvog03] {
    font-size: 1.6rem;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: pulse-b-d121qvog03 1.5s infinite;
}

.loading-icon[b-d121qvog03] {
    font-size: 2.5rem;
}

@keyframes pulse-b-d121qvog03 {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}
/* _content/ProDigitalTools/Pages/Checkout.razor.rz.scp.css */
.checkout-wrapper[b-xlinn1koby] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f4f6f9;
}

.checkout-modern-card[b-xlinn1koby] {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
    direction: rtl;
}

.checkout-title[b-xlinn1koby] {
    font-size: 26px;
    color: #007bff;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.product-info[b-xlinn1koby] {
    margin-bottom: 20px;
}

.info-row[b-xlinn1koby] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-icon[b-xlinn1koby] {
    color: #17a2b8;
    font-size: 20px;
    min-width: 24px;
}

.payment-section label[b-xlinn1koby] {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.payment-section select[b-xlinn1koby] {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.payment-info[b-xlinn1koby] {
    margin-top: 15px;
    background: #eaf4ff;
    padding: 15px;
    border-radius: 12px;
    border-right: 5px solid #007bff;
}

.btn-confirm[b-xlinn1koby] {
    width: 100%;
    background-color: #28a745;
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-size: 18px;
    border: none;
    margin-top: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-confirm:hover[b-xlinn1koby] {
        background-color: #218838;
    }

.confirmation-box[b-xlinn1koby] {
    margin-top: 30px;
    background-color: #f1fff3;
    padding: 20px;
    border-radius: 10px;
    border-right: 5px solid #28a745;
}

.btn-invoice[b-xlinn1koby], .btn-home[b-xlinn1koby] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-invoice[b-xlinn1koby] {
    background-color: #ffc107;
    color: #212529;
}

    .btn-invoice:hover[b-xlinn1koby] {
        background-color: #e0a800;
    }

.btn-home[b-xlinn1koby] {
    background-color: #007bff;
    color: white;
}

    .btn-home:hover[b-xlinn1koby] {
        background-color: #0056b3;
    }


.kashier-button[b-xlinn1koby] {
    background-color: #ffc107;
    color: #222;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .kashier-button:hover[b-xlinn1koby] {
        background-color: #ffb300;
        transform: translateY(-2px);
    }

    .kashier-button:active[b-xlinn1koby] {
        transform: scale(0.98);
    }


.payment-options[b-xlinn1koby] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.payment-option[b-xlinn1koby] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    font-size: 18px;
    font-weight: 500;
}

    .payment-option:hover[b-xlinn1koby] {
        border-color: #007bff;
        background-color: #f0faff;
    }

    .payment-option.active[b-xlinn1koby] {
        border-color: #007bff;
        background-color: #e6f2ff;
        box-shadow: 0 0 6px rgba(0, 123, 255, 0.15);
    }

    .payment-option .emoji[b-xlinn1koby] {
        font-size: 24px;
        margin-left: 12px;
    }

    .payment-option .label[b-xlinn1koby] {
        flex: 1;
    }
/* _content/ProDigitalTools/Pages/Error.razor.rz.scp.css */
.error-container[b-s1ptvye0fh] {
    text-align: center;
    padding: 3rem;
    color: #e74c3c;
    font-family: 'Cairo', sans-serif;
}

.back-home-btn[b-s1ptvye0fh] {
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
}

    .back-home-btn:hover[b-s1ptvye0fh] {
        background-color: #2980b9;
    }
/* _content/ProDigitalTools/Pages/Index.razor.rz.scp.css */
.landing-container[b-v5ixiqjb6d] {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: #f9f9fb;
    color: #333;
    padding: 0;
    margin: 0;
}

.page-wrapper[b-v5ixiqjb6d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.landing-container[b-v5ixiqjb6d] {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}


/* Hero Section */
.hero-section-modern[b-v5ixiqjb6d] {
    padding-top: 7rem; /* تأكيد تعويض ارتفاع الهيدر */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, #4A90E2 0%, #00C897 100%);
    color: #fff;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}




.hero-content[b-v5ixiqjb6d] {
    flex: 1 1 50%;
    text-align: right;
    padding: 1rem 2rem;
}

    .hero-content h1[b-v5ixiqjb6d] {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .hero-content p[b-v5ixiqjb6d] {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        max-width: 500px;
        font-weight: normal;
        line-height: 1.8;
    }

.btn-cta[b-v5ixiqjb6d] {
    background-color: #ff6b6b;
    color: #fff;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    display: inline-block;
    border: none;
    cursor: pointer;
}

    .btn-cta:hover[b-v5ixiqjb6d] {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
        background-color: #ff4d4d;
    }

.hero-image[b-v5ixiqjb6d] {
    max-width: 45%;
}
.hero-text[b-v5ixiqjb6d] {
    max-width: 50%;
}


    .hero-image img[b-v5ixiqjb6d] {
        max-width: 350px;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

/* Featured Products */
.featured-products-section[b-v5ixiqjb6d] {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

    .featured-products-section h2[b-v5ixiqjb6d] {
        font-size: 2rem;
        color: #007bff;
        margin-bottom: 2rem;
    }

.product-grid[b-v5ixiqjb6d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card[b-v5ixiqjb6d] {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    position: relative;
    width: 100%; /* جديد */
    height: 100%;
}

    .product-card:hover[b-v5ixiqjb6d] {
        transform: translateY(-5px);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
    }

.product-emoji[b-v5ixiqjb6d] {
    font-size: 56px;
    margin-bottom: 10px;
    animation: pulse-b-v5ixiqjb6d 2s infinite;
}

.product-card h3[b-v5ixiqjb6d] {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0.7rem 0 0.3rem;
    color: #333;
}

.product-card p[b-v5ixiqjb6d] {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.btn-buy[b-v5ixiqjb6d] {
    background-color: #4CAF50;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

    .btn-buy:hover[b-v5ixiqjb6d] {
        background-color: #3f9444;
    }

/* Why Us */
.why-us[b-v5ixiqjb6d] {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .why-us h2[b-v5ixiqjb6d] {
        font-size: 2rem;
        color: #007bff;
        margin-bottom: 1.5rem;
    }

.why-list[b-v5ixiqjb6d] {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

    .why-list li[b-v5ixiqjb6d] {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px dashed #ddd;
        color: #555;
    }

/* Testimonials */
.testimonials-section[b-v5ixiqjb6d] {
    background-color: #f5f7fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

    .testimonials-section h2[b-v5ixiqjb6d] {
        font-size: 2rem;
        color: #007bff;
        margin-bottom: 2rem;
    }

.testimonial-grid[b-v5ixiqjb6d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card[b-v5ixiqjb6d] {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: right; /* ✅ لمحاذاة RTL */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

    .testimonial-card p[b-v5ixiqjb6d] {
        color: #444;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1rem; /* ✅ مسافة مناسبة قبل الاسم */
        font-style: normal;
    }

    .testimonial-card span[b-v5ixiqjb6d] {
        font-size: 0.95rem;
        font-weight: bold;
        color: #777;
        text-align: left; /* ✅ لتمييز الاسم في الزاوية */
        display: block;
    }



.testimonials-section .swiper-pagination[b-v5ixiqjb6d] {
    margin-top: 30px;
    position: relative;
    bottom: 0;
}

/* Newsletter */
.newsletter-section[b-v5ixiqjb6d] {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .newsletter-section h2[b-v5ixiqjb6d] {
        font-size: 2rem;
        color: #007bff;
        margin-bottom: 1rem;
    }

    .newsletter-section p[b-v5ixiqjb6d] {
        color: #555;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

.newsletter-form[b-v5ixiqjb6d] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    .newsletter-form input[type="email"][b-v5ixiqjb6d] {
        padding: 0.6rem 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1rem;
        min-width: 260px;
        max-width: 100%;
    }

    .newsletter-form button[b-v5ixiqjb6d] {
        background-color: #ff6b6b;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 0.75rem 1.6rem;
        font-weight: bold;
        font-size: 1.05rem;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.3s ease;
    }

        .newsletter-form button:hover[b-v5ixiqjb6d] {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }


/* Featured Products */
.badge-best-seller[b-v5ixiqjb6d] {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #f57c00;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@keyframes pulse-b-v5ixiqjb6d {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.fade-in[b-v5ixiqjb6d] {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp-b-v5ixiqjb6d 0.9s ease forwards;
}

@keyframes fadeInUp-b-v5ixiqjb6d {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .hero-section-modern[b-v5ixiqjb6d] {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content[b-v5ixiqjb6d],
    .hero-image[b-v5ixiqjb6d] {
        max-width: 100%;
        padding: 1rem 0;
    }

        .hero-content h1[b-v5ixiqjb6d] {
            font-size: 2rem;
        }

        .hero-content p[b-v5ixiqjb6d] {
            font-size: 1.1rem;
        }

        .hero-image img[b-v5ixiqjb6d] {
            max-width: 260px;
        }
}

.product-emoji[b-v5ixiqjb6d] {
    font-size: 42px;
    text-align: center;
    margin-bottom: 8px;
}


/* Swiper Carousel Fix */
.swiper[b-v5ixiqjb6d] {
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box;
}

.swiper-wrapper[b-v5ixiqjb6d] {
    display: flex;
}

.swiper-slide[b-v5ixiqjb6d] {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: auto !important;
    box-sizing: border-box;
    padding: 1rem;
}

    /* داخل كروت الشهادات */
    .swiper-slide .testimonial-card[b-v5ixiqjb6d] {
        width: 100%;
        max-width: 360px;
        height: 100%;
    }


/* جعل الغلاف يأخذ نفس عرض العمود دائماً */
.product-wrapper[b-v5ixiqjb6d] {
    width: 100%; /* جديد */
    box-sizing: border-box; /* تأكيد الاتساع */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* شارة الأكثر طلبًا */
.badge-best-seller-top[b-v5ixiqjb6d] {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: #fff;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    z-index: 10;
}

.invisible[b-v5ixiqjb6d] {
    visibility: hidden;
}
/* تحتفظ بالمكان بدون ظهور */
/* _content/ProDigitalTools/Pages/PaymentConfirmation.razor.rz.scp.css */
.confirmation-container[b-xa6d4n2ic4] {
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #f9f9fb;
    font-family: 'Cairo', sans-serif;
}

.confirmation-box[b-xa6d4n2ic4] {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 550px;
    width: 100%;
}

.icon-success[b-xa6d4n2ic4] {
    font-size: 3.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

h2[b-xa6d4n2ic4] {
    color: #28a745;
    margin-bottom: 2rem;
    font-weight: bold;
}

.info-grid[b-xa6d4n2ic4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1rem;
    direction: rtl;
    text-align: right;
    padding: 1.5rem 0;
}

.row[b-xa6d4n2ic4] {
    display: contents;
}

.label[b-xa6d4n2ic4] {
    font-weight: bold;
    color: #333;
    padding-left: 0.5rem;
    text-align: start;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.5rem;
}

.value[b-xa6d4n2ic4] {
    text-align: end;
    font-weight: 500;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.5rem;
}

    /* لون مخصص للحالة */
    .value.status.pending[b-xa6d4n2ic4] {
        color: #ff9800;
    }



.status.pending[b-xa6d4n2ic4] {
    color: #ff9800;
}

.status.paid[b-xa6d4n2ic4] {
    color: #28a745;
}

.status.failed[b-xa6d4n2ic4] {
    color: #f44336;
}

.email-note[b-xa6d4n2ic4] {
    margin-top: 1.5rem;
    color: #777;
    font-size: 0.95rem;
}

.support-btn[b-xa6d4n2ic4] {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #00c897;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .support-btn:hover[b-xa6d4n2ic4] {
        background-color: #00b085;
    }

.error-box[b-xa6d4n2ic4] {
    padding: 2rem;
    background-color: #ffeaea;
    color: #d32f2f;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
}


.copy-btn[b-xa6d4n2ic4] {
    background: none;
    border: none;
    font-size: 0.9rem;
    margin-right: 0.4rem;
    cursor: pointer;
    color: #4CAF50;
    transition: transform 0.2s ease;
}

    .copy-btn:hover[b-xa6d4n2ic4] {
        transform: scale(1.2);
    }


.copy-confirm[b-xa6d4n2ic4] {
    margin-right: 0.6rem;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: bold;
}


.pdf-btn[b-xa6d4n2ic4] {
    display: inline-block;
    margin-top: 1rem;
    background-color: #1b6ec2;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .pdf-btn:hover[b-xa6d4n2ic4] {
        background-color: #155a9a;
    }


.invoice-link[b-xa6d4n2ic4] {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

    .invoice-link:hover[b-xa6d4n2ic4] {
        text-decoration: underline;
    }


@media screen and (max-width: 600px) {
    .confirmation-box[b-xa6d4n2ic4] {
        padding: 2rem 1rem;
    }

    .info-grid[b-xa6d4n2ic4] {
        grid-template-columns: 1fr; /* عمود واحد للهاتف */
        text-align: center;
    }

    .label[b-xa6d4n2ic4], .value[b-xa6d4n2ic4] {
        text-align: center !important;
    }

    .copy-btn[b-xa6d4n2ic4] {
        margin-top: 0.5rem;
        margin-right: 0;
    }
}
/* _content/ProDigitalTools/Pages/PaymentSuccess.razor.rz.scp.css */
.loading-container[b-j93oovqqto] {
    text-align: center;
    margin-top: 100px;
    font-family: 'Segoe UI', sans-serif;
}

.spinner[b-j93oovqqto] {
    margin: 20px auto;
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #4CAF50;
    border-radius: 50%;
    animation: spin-b-j93oovqqto 1s linear infinite;
}

@keyframes spin-b-j93oovqqto {
    to {
        transform: rotate(360deg);
    }
}

h3[b-j93oovqqto] {
    color: #4CAF50;
}

p[b-j93oovqqto] {
    color: #555;
    font-size: 18px;
}
/* _content/ProDigitalTools/Pages/Privacy.razor.rz.scp.css */
.static-container[b-cxjhqv2kjo] {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

h1[b-cxjhqv2kjo] {
    color: #333;
    font-weight: 600;
    margin-top: 25px;
    text-align: right;
}

ul[b-cxjhqv2kjo] {
    padding-right: 20px;
    color: #555;
    line-height: 1.6;
    text-align: right;
    direction: rtl;
}

li[b-cxjhqv2kjo] {
    margin-bottom: 8px;
}
/* _content/ProDigitalTools/Pages/Products.razor.rz.scp.css */
.products-page[b-3h621i141l] {
    padding: 4rem 1.5rem;
    font-family: 'Cairo', sans-serif;
    background-color: #f9f9fb;
    direction: rtl;
}

.products-title[b-3h621i141l] {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.products-subtitle[b-3h621i141l] {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

.products-grid[b-3h621i141l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-box[b-3h621i141l] {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* ✅ إضافة flex لتثبيت الزر في الأسفل */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

    .product-box:hover[b-3h621i141l] {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    .product-box h3[b-3h621i141l] {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: #333;
    }

.product-content[b-3h621i141l] {
    flex-grow: 1;
}

.product-price[b-3h621i141l] {
    font-size: 1.1rem;
    color: #30af33;
    font-weight: bold;
    margin-bottom: 1rem;
}

.buy-button[b-3h621i141l] {
    background-color: #007bff;
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .buy-button:hover[b-3h621i141l] {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

/* Fade-in animation */
.fade-in[b-3h621i141l] {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp-b-3h621i141l 0.6s ease forwards;
}

@keyframes fadeInUp-b-3h621i141l {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.page-wrapper[b-3h621i141l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.landing-container[b-3h621i141l] {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}


.product-box.highlighted[b-3h621i141l] {
    border: 2px solid #00c853;
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
}

.highlight-pulse[b-3h621i141l] {
    animation: pulse-highlight-b-3h621i141l 1s ease-in-out infinite;
}

@keyframes pulse-highlight-b-3h621i141l {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 200, 83, 0.6);
    }
}

/* ✨ تأثير تمييز المنتج المحدد */
.highlighted[b-3h621i141l] {
    border: 2px solid #007bff;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.5);
    transform: scale(1.05);
    transition: all 0.4s ease;
}

.highlight-pulse[b-3h621i141l] {
    animation: pulse-highlight-b-3h621i141l 1.5s infinite;
}


.product-icon[b-3h621i141l] {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.product-box:hover .product-icon[b-3h621i141l] {
    transform: scale(1.1);
}


.product-icon-emoji[b-3h621i141l] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.product-box:hover .product-icon-emoji[b-3h621i141l] {
    transform: scale(1.15);
}


.category-title[b-3h621i141l] {
    font-size: 1.6rem;
    color: #444;
    margin: 2rem 0 1rem;
    border-right: 6px solid #007bff;
    padding-right: 10px;
}

.coming-soon-label[b-3h621i141l] {
    background-color: #ffc107;
    color: #333;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.product-box[style*="opacity: 0.6"][b-3h621i141l] {
    pointer-events: none;
}


.filter-buttons[b-3h621i141l] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.filter-btn[b-3h621i141l] {
    background-color: #f1f1f1;
    border: none;
    margin: 0.2rem;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .filter-btn:hover[b-3h621i141l] {
        background-color: #ddd;
    }

    .filter-btn.active[b-3h621i141l] {
        background-color: #007bff;
        color: white;
    }

.coming-soon-label[b-3h621i141l] {
    display: inline-block;
    background-color: #ffc107;
    color: #222;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 0.6rem;
}


@keyframes pulse-highlight-b-3h621i141l {
    0% {
        box-shadow: 0 0 0px rgba(0, 123, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(0, 123, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 0px rgba(0, 123, 255, 0.5);
    }
}
/* _content/ProDigitalTools/Pages/Terms.razor.rz.scp.css */
.terms-container[b-humhu62qwh] {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

h1[b-humhu62qwh], h3[b-humhu62qwh] {
    color: #333;
    font-weight: 600;
    margin-top: 25px;
    text-align: right;
}

p[b-humhu62qwh] {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: right;
}

ul[b-humhu62qwh] {
    padding-right: 20px;
    color: #555;
    line-height: 1.6;
    text-align: right;
    direction: rtl;
}

li[b-humhu62qwh] {
    margin-bottom: 8px;
}

.ltr-inline[b-humhu62qwh] {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
    font-weight: bold;
}


.contact-row[b-humhu62qwh] {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    direction: rtl;
    justify-content: flex-start;
}

.contact-text[b-humhu62qwh] {
    text-align: right;
    direction: rtl;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-email[b-humhu62qwh] {
    direction: ltr;
    text-align: left;
    font-weight: bold;
    font-family: sans-serif;
    color: #000;
    word-break: break-all; /* في حالة الإيميل طويل على الموبايل */
    margin-top: 5px;
    margin-bottom: 10px;
}
/* _content/ProDigitalTools/Pages/User/ChangePassword.razor.rz.scp.css */
.change-password-container[b-32y6rw5cd6] {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.sidebar[b-32y6rw5cd6] {
    flex: 1 1 250px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.profile-pic[b-32y6rw5cd6] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #ddd;
}

.username[b-32y6rw5cd6] {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.user-menu[b-32y6rw5cd6] {
    list-style: none;
    padding: 0;
}

    .user-menu li[b-32y6rw5cd6] {
        padding: 0.5rem 0;
        cursor: pointer;
        color: #007bff;
        transition: 0.3s;
    }

        .user-menu li:hover[b-32y6rw5cd6] {
            color: #0056b3;
        }

.form-section[b-32y6rw5cd6] {
    flex: 2 1 500px;
}

    .form-section h2[b-32y6rw5cd6] {
        margin-bottom: 1.5rem;
        color: #333;
        font-size: 1.5rem;
        text-align: center;
    }

.form-group[b-32y6rw5cd6] {
    margin-bottom: 1.2rem;
}

    .form-group label[b-32y6rw5cd6] {
        display: block;
        margin-bottom: 0.4rem;
        font-weight: bold;
        color: #444;
    }

.form-control[b-32y6rw5cd6] {
    width: 100%;
    padding: 0.6rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn-warning[b-32y6rw5cd6] {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 6px;
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-warning:hover[b-32y6rw5cd6] {
        background-color: #e0a800;
    }

.alert-success[b-32y6rw5cd6] {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.alert-danger[b-32y6rw5cd6] {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

/* ✅ دعم الهاتف المحمول */
@media (max-width: 768px) {
    .change-password-container[b-32y6rw5cd6] {
        flex-direction: column;
        padding: 1rem;
    }

    .sidebar[b-32y6rw5cd6] {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .form-section[b-32y6rw5cd6] {
        width: 100%;
    }

        .form-section h2[b-32y6rw5cd6] {
            font-size: 1.3rem;
        }

    .btn-warning[b-32y6rw5cd6] {
        font-size: 1rem;
    }

    .profile-pic[b-32y6rw5cd6] {
        width: 80px;
        height: 80px;
    }
}
/* _content/ProDigitalTools/Pages/User/EditUserData.razor.rz.scp.css */
.edit-profile-container[b-nelt2pdgxk] {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.sidebar[b-nelt2pdgxk] {
    flex: 1 1 250px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.profile-pic[b-nelt2pdgxk] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #ddd;
}

.username[b-nelt2pdgxk] {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.user-menu[b-nelt2pdgxk] {
    list-style: none;
    padding: 0;
}

    .user-menu li[b-nelt2pdgxk] {
        padding: 0.5rem 0;
        cursor: pointer;
        color: #007bff;
        transition: 0.3s;
    }

        .user-menu li:hover[b-nelt2pdgxk] {
            color: #0056b3;
        }

.form-section[b-nelt2pdgxk] {
    flex: 2 1 500px;
}

    .form-section h2[b-nelt2pdgxk] {
        margin-bottom: 1.5rem;
        color: #333;
        font-size: 1.5rem;
        text-align: center;
    }

.form-group[b-nelt2pdgxk] {
    margin-bottom: 1.2rem;
}

    .form-group label[b-nelt2pdgxk] {
        display: block;
        margin-bottom: 0.4rem;
        font-weight: bold;
        color: #444;
    }

.form-control[b-nelt2pdgxk] {
    width: 100%;
    padding: 0.6rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn-save[b-nelt2pdgxk] {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

    .btn-save:hover[b-nelt2pdgxk] {
        background-color: #218838;
    }

.alert-success[b-nelt2pdgxk] {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.alert-danger[b-nelt2pdgxk] {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

/* ✅ استجابة للهاتف المحمول */
@media (max-width: 768px) {
    .edit-profile-container[b-nelt2pdgxk] {
        flex-direction: column;
        padding: 1rem;
    }

    .sidebar[b-nelt2pdgxk] {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .form-section[b-nelt2pdgxk] {
        width: 100%;
    }

        .form-section h2[b-nelt2pdgxk] {
            font-size: 1.3rem;
        }

    .btn-save[b-nelt2pdgxk] {
        font-size: 1rem;
    }

    .profile-pic[b-nelt2pdgxk] {
        width: 80px;
        height: 80px;
    }
}
/* _content/ProDigitalTools/Pages/User/UserDashboard.razor.rz.scp.css */
.dashboard-container[b-jdg2yx3q37] {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.sidebar[b-jdg2yx3q37] {
    flex: 1 1 250px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.profile-pic[b-jdg2yx3q37] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #ddd;
}

.username[b-jdg2yx3q37] {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.user-menu[b-jdg2yx3q37] {
    list-style: none;
    padding: 0;
}

    .user-menu li[b-jdg2yx3q37] {
        padding: 0.5rem 0;
        cursor: pointer;
        color: #007bff;
        font-weight: 500;
        transition: 0.3s;
    }

        .user-menu li:hover[b-jdg2yx3q37] {
            color: #0056b3;
        }

.main-content[b-jdg2yx3q37] {
    flex: 2 1 500px;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .main-content h2[b-jdg2yx3q37] {
        color: #333;
        font-size: 1.7rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .main-content p[b-jdg2yx3q37] {
        font-size: 1.1rem;
        color: #555;
        text-align: center;
    }

/* ✅ استجابة الهاتف المحمول */
@media (max-width: 768px) {
    .dashboard-container[b-jdg2yx3q37] {
        flex-direction: column;
        padding: 1rem;
    }

    .sidebar[b-jdg2yx3q37] {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .main-content[b-jdg2yx3q37] {
        width: 100%;
        padding: 1.5rem;
    }

        .main-content h2[b-jdg2yx3q37] {
            font-size: 1.4rem;
        }

    .profile-pic[b-jdg2yx3q37] {
        width: 80px;
        height: 80px;
    }
}
/* _content/ProDigitalTools/Pages/User/UserDetails.razor.rz.scp.css */
.user-profile[b-j9toadevem] {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    line-height: 1.8;
}

    .user-profile p[b-j9toadevem] {
        margin: 10px 0;
        font-weight: 500;
    }

.table.orders-table[b-j9toadevem] {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.orders-table thead[b-j9toadevem] {
    background-color: #007bff;
    color: #fff;
}

.orders-table th[b-j9toadevem], .orders-table td[b-j9toadevem] {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.orders-table tbody tr:hover[b-j9toadevem] {
    background-color: #f1f7ff;
}

.orders-table td:nth-child(3)[b-j9toadevem] {
    font-weight: bold;
    color: #28a745;
}

h3[b-j9toadevem], h4[b-j9toadevem] {
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

@media (max-width: 768px) {
    .user-profile[b-j9toadevem], .orders-table[b-j9toadevem] {
        font-size: 0.9rem;
    }

        .orders-table thead[b-j9toadevem] {
            display: none;
        }

        .orders-table tr[b-j9toadevem] {
            display: block;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 10px;
        }

        .orders-table td[b-j9toadevem] {
            display: flex;
            justify-content: space-between;
            padding: 8px 10px;
            border: none;
            border-bottom: 1px solid #eee;
        }

            .orders-table td[b-j9toadevem]:before {
                content: attr(data-label);
                font-weight: bold;
                color: #555;
            }
}
/* _content/ProDigitalTools/Pages/User/UserOrders.razor.rz.scp.css */
h3[b-5dkdv2pntx] {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.search-box[b-5dkdv2pntx], .filter-dropdown[b-5dkdv2pntx] {
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.table[b-5dkdv2pntx] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

    .table th[b-5dkdv2pntx], .table td[b-5dkdv2pntx] {
        border: 1px solid #ddd;
        padding: 0.75rem;
        text-align: center;
        font-size: 1rem;
    }

    .table th[b-5dkdv2pntx] {
        background: linear-gradient(to right, #00c6ff, #0072ff);
        color: white;
        font-weight: bold;
    }

    .table tbody tr:nth-child(even)[b-5dkdv2pntx] {
        background-color: #f9f9f9;
    }

    .table tbody tr:hover[b-5dkdv2pntx] {
        background-color: #f1f1f1;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

/* ✅ لون خلفية حسب الحالة */
.status-pending[b-5dkdv2pntx] {
    background-color: #fff3cd; /* أصفر فاتح */
    font-weight: bold;
    color: #856404;
}

.status-success[b-5dkdv2pntx] {
    background-color: #d4edda; /* أخضر فاتح */
    font-weight: bold;
    color: #155724;
}

.status-failed[b-5dkdv2pntx] {
    background-color: #f8d7da; /* أحمر فاتح */
    font-weight: bold;
    color: #721c24;
}

/* ✅ تحسين عرض الموبايل */
@media (max-width: 768px) {
    .search-box[b-5dkdv2pntx], .filter-dropdown[b-5dkdv2pntx] {
        width: 90%;
        display: block;
        margin: 0.5rem auto;
    }

    .table th[b-5dkdv2pntx], .table td[b-5dkdv2pntx] {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}


.pagination-controls[b-5dkdv2pntx] {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-weight: bold;
    color: #333;
}

    .pagination-controls button[b-5dkdv2pntx] {
        padding: 8px 16px;
        background-color: #1e88e5;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .pagination-controls button:disabled[b-5dkdv2pntx] {
            background-color: #ccc;
            cursor: not-allowed;
        }


.order-link[b-5dkdv2pntx] {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

    .order-link:hover[b-5dkdv2pntx] {
        color: #0056b3;
    }
/* _content/ProDigitalTools/Shared/AdminSidebar.razor.rz.scp.css */
.admin-sidebar[b-gn5llk4kdx] {
    position: fixed;
    top: 0;
    right: 0;
    width: 240px;
    height: 100vh;
    background-color: #f7f7f7;
    border-left: 1px solid #ddd;
    padding: 20px 15px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.05);
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
}

    .admin-sidebar.hide[b-gn5llk4kdx] {
        transform: translateX(100%);
    }

    .admin-sidebar.show[b-gn5llk4kdx] {
        transform: translateX(0);
    }

    .admin-sidebar h2[b-gn5llk4kdx] {
        font-size: 22px;
        font-weight: bold;
        color: #333;
        margin-bottom: 25px;
        text-align: center;
    }

    .admin-sidebar ul[b-gn5llk4kdx] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .admin-sidebar ul li[b-gn5llk4kdx] {
            font-size: 16px;
            padding: 12px 10px;
            margin-bottom: 10px;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .admin-sidebar ul li i[b-gn5llk4kdx] {
                font-size: 18px;
                color: #3b82f6;
                min-width: 20px;
                text-align: center;
            }

            .admin-sidebar ul li:hover[b-gn5llk4kdx] {
                background-color: #e0e7ff;
                transform: scale(1.02);
            }

            .admin-sidebar ul li.active[b-gn5llk4kdx] {
                background-color: #c7d2fe;
                font-weight: bold;
            }



/* زر السهم */
.toggle-btn[b-gn5llk4kdx] {
    position: fixed;
    top: 20px;
    z-index: 1100;
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
}

    /* يتحرك تلقائيًا حسب حالة السايدبار */
    .toggle-btn.with-sidebar[b-gn5llk4kdx] {
        right: 250px;
    }

    .toggle-btn.no-sidebar[b-gn5llk4kdx] {
        right: 10px;
    }

    .toggle-btn i[b-gn5llk4kdx] {
        pointer-events: none;
    }

/* موبايل */
@media (max-width: 768px) {
    .admin-sidebar[b-gn5llk4kdx] {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

        .admin-sidebar.show[b-gn5llk4kdx] {
            transform: translateX(0);
        }

    /* 👇 تعديل هنا: نزلنا الزر شويه لتفادي تغطيته للهيدر */
    .toggle-btn[b-gn5llk4kdx] {
        top: 60px;
    }

        .toggle-btn.with-sidebar[b-gn5llk4kdx] {
            right: 80%;
        }

        .toggle-btn.no-sidebar[b-gn5llk4kdx] {
            right: 10px;
        }

    .admin-sidebar h2[b-gn5llk4kdx] {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .admin-sidebar ul li[b-gn5llk4kdx] {
        font-size: 15px;
        padding: 10px;
    }
}
/* _content/ProDigitalTools/Shared/ChatWidget.razor.rz.scp.css */
/* ✅ زر الشات العائم */
.chat-fab[b-tci9zbei2n] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10010 !important;
    transition: transform 0.3s ease;
    pointer-events: auto !important;
}

    .chat-fab:hover[b-tci9zbei2n] {
        transform: scale(1.1);
    }

    .chat-fab img[b-tci9zbei2n] {
        width: 28px;
        height: 28px;
    }

/* ✅ نافذة الشات */
.chat-popup[b-tci9zbei2n] {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10020 !important;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    pointer-events: auto !important;
}

/* ✅ طبقة خلفية عند الفتح */
.chat-backdrop[b-tci9zbei2n] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 10000 !important;
    pointer-events: auto !important;
}

/* ✅ الهيدر */
.chat-header[b-tci9zbei2n] {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .chat-header .close-btn[b-tci9zbei2n] {
        background: none;
        border: none;
        color: white;
        font-size: 1.1rem;
        cursor: pointer;
    }

/* ✅ الرسائل */
.chat-messages[b-tci9zbei2n] {
    max-height: 250px;
    overflow-y: auto;
    padding: 10px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
}

.chat-message[b-tci9zbei2n] {
    max-width: 85%;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.95rem;
    word-wrap: break-word;
    line-height: 1.4;
}

    .chat-message.user[b-tci9zbei2n] {
        background-color: #d1ecf1;
        align-self: flex-end;
        text-align: right;
    }

    .chat-message.support[b-tci9zbei2n] {
        background-color: #e2e3e5;
        align-self: flex-start;
        text-align: left;
    }

/* ✅ إدخال الرسالة */
.chat-inputs[b-tci9zbei2n] {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
}

    .chat-inputs input[b-tci9zbei2n],
    .chat-inputs textarea[b-tci9zbei2n] {
        padding: 8px;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-size: 0.95rem;
    }

    .chat-inputs button[b-tci9zbei2n] {
        background-color: #28a745;
        color: white;
        border: none;
        padding: 8px;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
    }

.chat-success[b-tci9zbei2n] {
    color: green;
    font-size: 0.9rem;
    text-align: center;
}

/* ✅ تحسين التصميم على الجوال */
@media (max-width: 480px) {
    .chat-popup[b-tci9zbei2n] {
        width: 90%;
        right: 5%;
        bottom: 80px;
    }

    .chat-fab[b-tci9zbei2n] {
        width: 60px;
        height: 60px;
    }

        .chat-fab img[b-tci9zbei2n] {
            width: 30px;
            height: 30px;
        }
}

/* ✅ ضمان أن عناصر الموقع لا تغطي زر الشات */
.main-content[b-tci9zbei2n],
.footer[b-tci9zbei2n],
.top-row[b-tci9zbei2n] {
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
}
/* _content/ProDigitalTools/Shared/MainLayout.razor.rz.scp.css */
/* ✅ الهيكل العام */
.layout-wrapper[b-szwfmkofvz] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content[b-szwfmkofvz] {
    flex: 1;
    padding-top: 110px;
    padding-bottom: 40px;
    font-family: 'Cairo', sans-serif;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    box-sizing: border-box;
}

/* ✅ الفوتر */
.main-footer[b-szwfmkofvz] {
    background: linear-gradient(135deg, #3a86ff, #00b894);
    color: white;
    padding: 3rem 1.5rem 2rem;
    font-family: 'Cairo', sans-serif;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.footer-content[b-szwfmkofvz] {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ✅ الأعمدة */
.footer-columns[b-szwfmkofvz] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: right;
}

.footer-col[b-szwfmkofvz] {
    flex: 1 1 300px;
}

/* ✅ عنوان الدفع */
.payment-col[b-szwfmkofvz] {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* محاذاة للعناصر من اليمين */
    gap: 0.5rem; /* مسافة أنيقة بين العنوان والصور */
}

    .payment-col h4[b-szwfmkofvz] {
        font-size: 1.1rem;
        font-weight: bold;
        margin: 0;
        color: #fff;
        padding: 0;
    }

.payment-icons[b-szwfmkofvz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-start;
}


    .payment-icons img[b-szwfmkofvz] {
        height: 36px;
        width: auto;
        transition: transform 0.3s ease;
    }

        .payment-icons img:hover[b-szwfmkofvz] {
            transform: scale(1.1);
        }

/* ✅ التواصل */
.footer-col p[b-szwfmkofvz] {
    margin: 0.4rem 0;
    font-size: 0.95rem;
    color: #fff;
}

.footer-col a[b-szwfmkofvz] {
    color: #ffeaa7;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-col a:hover[b-szwfmkofvz] {
        color: #dfe6e9;
    }

/* ✅ روابط التنقل */
.footer-links[b-szwfmkofvz] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-weight: bold;
}

    .footer-links a[b-szwfmkofvz] {
        color: #fff;
        text-decoration: none;
    }

        .footer-links a:hover[b-szwfmkofvz] {
            color: #dfe6e9;
        }

/* ✅ الحقوق */
.footer-bottom[b-szwfmkofvz] {
    font-size: 0.9rem;
    color: #eeeeee;
}

/* ✅ الموبايل */
@media (max-width: 768px) {
    .footer-columns[b-szwfmkofvz] {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-col[b-szwfmkofvz] {
        align-items: center;
    }

    .main-footer[b-szwfmkofvz] {
        padding: 2rem 1rem 2rem;
    }
}
/* _content/ProDigitalTools/Shared/NavMenu.razor.rz.scp.css */
.top-row[b-5x4aoommgb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #4A90E2, #00C897);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Cairo', sans-serif;
}

.container[b-5x4aoommgb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.navbar-brand[b-5x4aoommgb] {
    font-size: 1.6rem;
    font-weight: bold;
    color: white;
    white-space: nowrap;
}

.navbar-toggler[b-5x4aoommgb] {
    display: none;
}

.toggle-icon[b-5x4aoommgb] {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    user-select: none;
}

.nav-links[b-5x4aoommgb] {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .nav-links a[b-5x4aoommgb] {
        color: white;
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.2);
        padding: 6px 14px;
        border-radius: 8px;
        font-weight: bold;
        font-size: 1rem;
        transition: background 0.3s ease;
    }

        .nav-links a:hover[b-5x4aoommgb] {
            background-color: rgba(255, 255, 255, 0.4);
            color: #fff;
        }

.auth-btn[b-5x4aoommgb] {
    background-color: #ffffff33;
    border: 1px solid #ffffff66;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .auth-btn:hover[b-5x4aoommgb] {
        background-color: #ffffff55;
    }

/* أيقونة الإعدادات أو الأدمن */
.user-settings-icon img[b-5x4aoommgb],
.admin-chat-icon img[b-5x4aoommgb] {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
    transition: transform 0.2s ease;
}

    .user-settings-icon img:hover[b-5x4aoommgb],
    .admin-chat-icon img:hover[b-5x4aoommgb] {
        transform: scale(1.1);
    }

/* Responsive */
@media (max-width: 768px) {
    .toggle-icon[b-5x4aoommgb] {
        display: block;
    }

    .navbar-toggler[b-5x4aoommgb] {
        display: block;
        position: absolute;
        top: 18px;
        right: 20px;
        opacity: 0;
        width: 36px;
        height: 36px;
        z-index: 2;
    }

    .nav-links[b-5x4aoommgb] {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        margin-top: 10px;
    }

    .navbar-toggler:checked ~ .nav-links[b-5x4aoommgb] {
        display: flex;
    }

    .nav-links a[b-5x4aoommgb] {
        width: 100%;
        text-align: center;
    }
}


/* Dropdown Settings Menu */
.dropdown[b-5x4aoommgb] {
    position: relative;
}

.dropdown-toggle[b-5x4aoommgb] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
}

    .dropdown-toggle img[b-5x4aoommgb] {
        width: 24px;
        height: 24px;
        filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
        transition: transform 0.2s ease;
    }

    .dropdown-toggle:hover img[b-5x4aoommgb] {
        transform: scale(1.1);
    }

.dropdown-menu[b-5x4aoommgb] {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: white;
    color: black;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    display: none;
    z-index: 2000;
}

.dropdown:hover .dropdown-menu[b-5x4aoommgb] {
    display: block;
}

.dropdown-menu a[b-5x4aoommgb] {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

    .dropdown-menu a:hover[b-5x4aoommgb] {
        background-color: #f0f0f0;
        color: #000;
    }

/* Responsive fix */
@media (max-width: 768px) {
    .dropdown-menu[b-5x4aoommgb] {
        position: static;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        box-shadow: none;
        margin-top: 10px;
    }

        .dropdown-menu a[b-5x4aoommgb] {
            text-align: center;
        }

    .dropdown:hover .dropdown-menu[b-5x4aoommgb] {
        display: block;
    }
}




.welcome-message-enhanced[b-5x4aoommgb] {
    text-align: center;
    font-weight: bold;
    color: #fff;
    margin-inline-end: 20px;
}

    .welcome-message-enhanced .greeting[b-5x4aoommgb] {
        font-size: 16px;
    }

    .welcome-message-enhanced .welcome-divider[b-5x4aoommgb] {
        margin: 4px auto;
        width: 80px;
        border: 0;
        border-top: 2px solid #fff;
    }

    .welcome-message-enhanced .username[b-5x4aoommgb] {
        font-size: 14px;
        opacity: 0.9;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        transition: transform 0.2s ease, text-shadow 0.2s ease;
    }

        .welcome-message-enhanced .username:hover[b-5x4aoommgb] {
            transform: scale(1.05);
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
        }


/* Animation */
.fade-in[b-5x4aoommgb] {
    opacity: 0;
    animation: fadeInMove-b-5x4aoommgb 1s ease-out forwards;
}

@keyframes fadeInMove-b-5x4aoommgb {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


