/* Job Container */
.job-container {
    padding: 25px;    
}

/* Job Card */
.job-card {
    background-color: #fff;
    border: 2px solid #5e35b1; /* Deep Purple */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15); /* Softer shadow for modern look */
}

/* Job Title */
.job-title {
    background-color: #5e35b1; /* Deep Purple */
    color: #fff; /* White text for contrast */
    padding: 12px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 8px;
}

/* Job Details */
.job-details {
    margin-top: 15px;
    color: #333; /* Darker text for readability */
    font-size: 14px;
    line-height: 1.6;
}

/* Apply Button */
.apply-button {
    display: block;
    width: 100%;
    background-color: #00bcd4; /* Bright Cyan */
    color: white;
    text-align: center;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
	font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #008c9e; /* Darker Cyan for hover effect */
}

/* Optional: Add some transitions for the job card */
.job-card:hover {
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
