






:root {
            --primary-color: #2563eb; /* Modern Mavi */
            --secondary-color: #1e40af;
            --bg-light: #f8fafc;
            --text-dark: #1e293b;
            --text-muted: #64748b;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
        }

        /* Navbar Tasarımı */
        .navbar {
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            padding: 1rem 0;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
            letter-spacing: -0.5px;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.2s;
        }
        .nav-link:hover {
            color: var(--primary-color);
        }

        /* Hero Section (Arama Alanı) */
        .hero-section {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 2rem 2rem; /* Alt köşeleri yuvarla */
        }
        .hero-title {
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .search-box {
            background: white;
            padding: 0.rem;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
        }
        .search-input {
            border: none;
            outline: none;
            padding: 0.8rem 1.5rem;
            width: 100%;
            border-radius: 50px;
        }
       appearance: none;        /* Chrome, Edge */
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none;   /* Firefox */

    padding: 0.8rem 1.5rem;
    padding-right: 2.5rem;  /* ok için boşluk */
    border-radius: 50px;
    line-height: 1.5;
        .search-btn {
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-weight: 600;
        }

        /* Sidebar Kategoriler */
        .category-card {
            background: white;
            border: none;
            border-radius: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            overflow: hidden;
        }
        .category-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            color: var(--text-dark);
            text-decoration: none;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.2s;
        }
        .category-link:hover {
            background-color: #eff6ff;
            color: var(--primary-color);
            padding-left: 25px; /* Hover animasyonu */
        }
        .badge-count {
            background-color: #e2e8f0;
            color: var(--text-muted);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* İş İlanı Kartları */
        .job-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-color: var(--primary-color);
        }
        .company-logo-box {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
        }
        .job-title a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: color 0.2s;
        }
        .job-title a:hover {
            color: var(--primary-color);
        }
        .salary-badge {
            background-color: #ecfdf5;
            color: #059669;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 8px;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background-color: #0f172a !important;
            margin-top: auto;
        }
