   :root {
            --primary-dark: #313e57;
            --primary-orange: #f27615;
            --primary-teal: #38a4ac;
        }

        body {
            background-color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .main-container {
            flex: 1;
        }

        .header-section {
            background: var(--primary-dark);
            color: white;
            padding: 1rem 0;
            margin-bottom: 2rem;
            /* border-radius: 0 0 15px 15px; */
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .search-section {
            background: #f8f9fa;
            border: 2px solid var(--primary-teal);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(49, 62, 87, 0.1);
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-teal);
            box-shadow: 0 0 0 0.25rem rgba(56, 164, 172, 0.25);
        }

        .btn-search {
            background-color: var(--primary-orange);
            border: none;
            color: white;
            padding: 0.5rem 2rem;
            transition: all 0.3s;
        }

        .btn-search:hover {
            background-color: #d66812;
            transform: translateY(-2px);
            color: white;
        }

        .job-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(49, 62, 87, 0.1);
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(56, 164, 172, 0.2);
            border-color: var(--primary-teal);
        }

        .company-logo {
            width: 50px;
            height: 50px;
            background: var(--primary-dark);
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.25rem;
        }

        .job-title {
            color: var(--primary-dark);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .company-name {
            color: #666;
            font-size: 1.1rem;
        }

        .badge-custom {
            background-color: #f0f8f9;
            color: var(--primary-dark);
            border: 1px solid var(--primary-teal);
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .salary {
            color: var(--primary-orange);
            font-size: 1.25rem;
            font-weight: bold;
        }

        .btn-apply {
            background-color: var(--primary-orange);
            border: none;
            color: white;
            width: 100%;
            padding: 0.75rem;
            transition: all 0.3s;
        }

        .btn-apply:hover {
            background-color: #d66812;
            transform: translateY(-2px);
            color: white;
        }

        .no-jobs {
            text-align: center;
            color: var(--primary-dark);
            padding: 3rem;
            background: #f8f9fa;
            border: 2px dashed var(--primary-teal);
            border-radius: 15px;
        }

        .footer {
            /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%); */
            color: var(--primary-dark);
            text-align: center;
            padding: 2rem 0;
            margin-top: auto;
            border-radius: 15px 15px 0 0;
        }

        .footer p {
            margin: 0;
            font-size: 1rem;
        }

        .modal-header {
            background: var(--primary-dark);
            color: white;
        }

        .modal-body {
            padding: 2rem;
        }

        .detail-section {
            margin-bottom: 1.5rem;
        }

        .detail-label {
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .detail-value {
            color: #666;
        }

        .btn-view-details {
            background-color: var(--primary-teal);
            border: none;
            color: white;
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s;
        }

        .btn-view-details:hover {
            background-color: #2d8a91;
            transform: translateY(-2px);
            color: white;
        }