/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

header {
  background: #f9f9f9;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.header-content {
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.search-bar input[type="text"] {
  width: 60%;
  padding: 10px;
  border-radius: 25px;
  border: 1px solid #ddd;
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}

.user-options {
  margin-top: 20px;
}

.user-options button {
  margin: 5px;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #ff4500;
  color: white;
}

.btn-secondary {
  background-color: white;
  color: #ff4500;
  border: 1px solid #ff4500;
}

.banner {
  background-color: white;
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.banner-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.highlight {
  color: #ff4500;
  font-weight: bold;
}

.banner-buttons button {
  margin: 5px;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.trusted-by {
  text-align: center;
  padding: 20px 0;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.logos img {
  margin: 0 10px;
  height: 30px;
  vertical-align: middle;
}

.filters {
  background-color: white;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.filter-options, .job-categories {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-options button, .job-categories button {
  margin: 5px;
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #ddd;
  cursor: pointer;
  background-color: white;
  color: #333;
}

.job-categories .btn-category {
  border: 1px dashed #ddd;
}

.job-listings {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 10px;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  color: white;
  position: relative;
}

.job-card.yellow {
  background-color: #fff59d;
  color: #000;
}

.job-card.blue {
  background-color: #1976d2;
}

.job-card.red {
  background-color: #ef5350;
}

.job-info {
  display: flex;
  align-items: center;
  width: 90%;
}

.company-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.job-details {
  flex-grow: 1;
}

.job-details h3 {
  margin: 0;
  font-size: 20px;
}

.company-name {
  margin: 5px 0;
  font-size: 14px;
}

.job-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.job-tags span {
  background-color: #e0e0e0;
  color: #333;
  border-radius: 15px;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 12px;
}

.location-salary {
  font-size: 14px;
}

.location-salary .location {
  margin-right: 20px;
}

.contract-type {
  background-color: white;
  color: #333;
  border-radius: 15px;
  padding: 2px 5px;
  font-size: 10px;
  margin-left: 10px;
}

.job-time {
  font-size: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  color: #333;
  background-color: white;
  border-radius: 15px;
  padding: 5px 10px;
}

.verified {
  background-color: #4caf50;
  color: white;
  border-radius: 5px;
  padding: 2px 5px;
  font-size: 10px;
  margin-left: 10px;
}

.job-tags .tag {
  display: inline-block;
  background-color: #ffeb3b;
  color: #333;
  border-radius: 5px;
  padding: 5px 10px;
  margin-right: 5px;
}
