<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* LinkedIn-style CSS for Job Board */

/* Global Styles */
body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
  color: rgba(0, 0, 0, 0.9);
  background-color: #f3f2ef;
  line-height: 1.5;
}

.container {
  max-width: 1128px;
  margin: 0 auto;
  padding: 0 16px;
}

a {
  color: #0a66c2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Styles */
header {
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

header .logo img {
  height: 34px;
  margin-right: 8px;
}

/* Job Listing Section */
#intro {
  background-color: transparent;
  padding-top: 76px;
  padding-bottom: 24px;
}

#intro .intro-info h2 {
  color: rgba(0, 0, 0, 0.9);
  font-size: 24px;
  font-weight: 500;
  padding: 20px 0;
}

#about {
  padding: 0;
  margin-bottom: 48px;
}

/* Search Bar */
.search-form {
  background-color: white;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
}

.search-form input[type="text"] {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  width: 100%;
}

.search-form button {
  background-color: #0a66c2;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

/* Filter Sidebar */
.filter-sidebar {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
  padding: 16px;
}

.filter-sidebar h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.9);
}

.filter-sidebar label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

.filter-sidebar input[type="checkbox"] {
  margin-right: 8px;
}

/* Job Listing Cards */
.job-listing {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}

.job-listing:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.2);
}

.job-listing-heading {
  margin: 0 0 12px 0;
  padding: 0;
}

.job-listing-heading-text a {
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
}

.job-listing-heading-text a:hover {
  color: #0a66c2;
  text-decoration: underline;
}

.job-listing-job-info {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
}

.job-listing-job-info-date, 
.job-listing-job-info-item {
  margin-right: 16px;
  margin-bottom: 8px;
}

.job-listing-job-info i {
  margin-right: 4px;
}

.read-more-btn {
  display: inline-block;
  color: #0a66c2;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

/* Badges/Tags */
.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  background-color: #f3f2ef;
  color: rgba(0, 0, 0, 0.6);
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* Posted Date */
.posted-date {
  display: inline-block;
  background-color: #f3f2ef;
  color: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin-right: 8px;
}

/* Footer */
#footer {
  background-color: white;
  border-top: 1px solid #e0e0e0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

#footer .footer-top {
  padding: 40px 0;
}

#footer h4 {
  color: rgba(0, 0, 0, 0.9);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer ul li {
  margin-bottom: 8px;
}

#footer ul li a {
  color: rgba(0, 0, 0, 0.6);
}

#footer ul li a:hover {
  color: #0a66c2;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding: 16px 0;
  font-size: 12px;
}

/* Buttons */
.linkedin-btn {
  display: inline-block;
  background-color: #0a66c2;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.linkedin-btn:hover {
  background-color: #054281;
  text-decoration: none;
}

.linkedin-btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #0a66c2;
  border: 1px solid #0a66c2;
  border-radius: 24px;
  padding: 9px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.linkedin-btn-outline:hover {
  background-color: rgba(10, 102, 194, 0.1);
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .job-listing {
    padding: 16px;
  }
  
  .job-listing-heading-text a {
    font-size: 16px;
  }
  
  .search-form {
    flex-direction: column;
  }
  
  .filter-sidebar {
    margin-bottom: 16px;
  }
}
</pre></body></html>