.job-card {
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 10px;
            background-color: #ffffff;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .job-card h2 {
            margin-top: 0;
            margin-bottom: 10px;
        }

        .job-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #2c3e50;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 10px;
            margin-bottom: 10px;
        }

        .job-details p {
            margin: 0;
        }

        .apply-button {
            background-color: #0077b5;
            color: white;
            border: none;
            padding: 10px 20px;
            text-decoration: none;
            display: inline-block;
            border-radius: 5px;
        }
        
        
    