﻿html, body {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 0;
}

a, .btn-link {
    color: #ffffff;
    text-decoration: none !important;
    border-bottom: none !important;
}

.btn-primary {
    color: #fff;
    background-color: #ff6666;
    border-color: #ff6666;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background-color: #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred.";
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

/* 🔥 إزالة الخط تحت جميع الروابط في الموقع كله */
a, .nav-link, .nav-links a, .btn-cta {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* 🔥 حل مشكلة اللون الافتراضي للروابط */
.nav-link {
    color: inherit;
}

/* ✅ مكون تنسيق عرض الصفحات بالكامل */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ✅ نسخة من NavMenu.razor.css */
.top-row {
    background: linear-gradient(135deg, #4A90E2, #00C897);
    color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
    letter-spacing: 0.2px;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.auth-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.auth-btn {
    border: 1px solid #ffffff88;
    border-radius: 6px;
    padding: 5px 12px;
    color: white;
    background: transparent;
    transition: background-color 0.3s;
    text-decoration: none;
}

    .auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }
