 body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            color: #333;
            text-align: center;
            padding: 20px;
        }

        .logo {
            font-weight: 700;
            font-size: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 40px;
        }

        .error-container {
            max-width: 600px;
        }

        /* 403 Visual (Lock Icon Style) */
        .error-code {
            font-size: 120px;
            font-weight: 800;
            color: #fecaca; /* Reddish tone for access denied */
            position: relative;
            line-height: 1;
            margin-bottom: 20px;
            letter-spacing: -5px;
        }

        h1 {
            font-size: 5rem;
            margin-bottom: 15px;
            color: #1a202c;
        }

        p {
            font-size: 18px;
            color: #718096;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .search-box {
            position: relative;
            max-width: 450px;
            margin: 0 auto 30px;
        }

        .search-box input {
            width: 100%;
            padding: 15px 25px;
            border-radius: 50px;
            border: 1px solid #e2e8f0;
            background-color: #f8fafc;
            font-size: 16px;
            outline: none;
        }

        .btn-home {
            background-color: #334e5e;
            color: white;
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background 0.3s;
        }

        .btn-home:hover {
            background-color: #243b47;
        }

        footer {
            margin-top: 50px;
            font-size: 14px;
            color: #a0aec0;
        }

          /* Direct ID Styling for Search Results */
#searchResults {
    display: block; /* Default block rakha hai jaisa aapne bataya */
    max-width: 500px;
    margin: 20px auto; /* Center karne ke liye */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Corners round rakhne ke liye */
    padding: 0;
}

/* Styling for 'a' tags inside the ID */
#searchResults a {
    display: block;
    padding: 14px 20px;
    color: #334e5e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

/* Last link se border hatane ke liye */
#searchResults a:last-child {
    border-bottom: none;
}

/* Hover Effect */
#searchResults a:hover {
    background-color: #f8fafc;
    color: #2b6cb0;
    padding-left: 25px; /* Chota sa slide effect */
}

/* Har link ke aage bullet ya icon ki jagah styling */
#searchResults a::before {
    content: '→';
    margin-right: 12px;
    color: #cbd5e0;
    font-weight: bold;
}

/* Agar results zyada ho jayein toh scroll control */
#searchResults {
    max-height: 400px;
    overflow-y: auto;
}

#searchResults a strong,
#searchResults a span {
    display: block;
    line-height: 1.35;
}

#searchResults a span {
    color: #64748b;
    font-size: 12px;
    margin-top: 3px;
}

.search-empty {
    padding: 14px 20px;
    color: #64748b;
    font-size: 14px;
}
