 body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
        .container { max-width: 800px; margin: auto; padding: 20px; }
        h1 { color: #333; }
		h3{margin:0px;}
        .search-box { margin: 20px 0; }
		input[type="text"] { width: 30%; padding: 10px; }
        button { padding: 10px; background: #000000; color: #fff; border: none; cursor: pointer; }
        .job-list { list-style: none; padding: 0; }
        .job-list li { margin: 10px 0; padding: 10px; border-bottom: 1px solid #ddd; }
        .apply-btn { background: #007bff; color: #fff; padding: 5px 10px; text-decoration: none; border-radius: 5px; float: right;}
        .apply-btn:hover { background: #0056b3; }
		.quickapply {background: #28a745; font-weight: 700; font-size: 0.9em;  color: #fff;   padding: 5px 10px;   text-decoration: none;  border-radius: 5px;   float: right;}
		.quickapply:hover {  background: #218838; }
		
		.applied {background: #5cb85c; font-weight: 700; font-size: 0.9em;  color: #fff;   padding: 5px 10px;   text-decoration: none;  border-radius: 5px;   float: right;}
		
		.applied:hover {background: #5cb85c; /* Same as normal state to indicate it doesn't respond to hover */}


		/* Make the header container use flexbox for alignment */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* This is the key property for vertical alignment */
  padding: 10px 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  flex: 0 0 auto;
  display: flex; /* Adding this helps with alignment */
  align-items: center; /* This ensures the logo image is vertically centered */
}

.header-right {
  flex: 0 0 auto;
  display: flex; /* Adding this helps with alignment */
  align-items: center; /* This ensures the button is vertically centered */
  padding-right:10px;
}

.header-button {
  display: inline-block;
  background-color: #fff;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
  /* Remove any margins that might affect vertical alignment */
  margin: 0;
  line-height: 1.5;
}

.header-button:hover {
  background-color: #f8f9fa;
  color: #0056b3;
  border-color: #0056b3;
  text-decoration: none;
}

 /* Category links container */
  .category-links {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
    list-style: none;
  }
  
  /* Individual link item */
  .category-links li {
    flex: 0 0 100%;
    padding: 10px;
    box-sizing: border-box;
  }
  
  .category-links a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #3366cc;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.2s;
  }
  
  .category-links a:hover {
    background-color: #e9e9e9;
    text-decoration: underline;
  }
  
 /* letter links container */
  .letter-links {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
    list-style: none;
  }
  
  /* Individual link item */
  .letter-links li {
    flex: 0 0 10%;
    padding: 10px;
    box-sizing: border-box;
	text-align: center
  }
  
  .letter-links a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #3366cc;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.2s;
  }
  
  .letter-links a:hover {
    background-color: #e9e9e9;
    text-decoration: underline;
  }
  
  /* Responsive breakpoints */
  @media (min-width: 600px) {
    .category-links li {
      flex: 0 0 50%; /* Two columns on medium screens */
    }
  }
  
/* Footer Styles */
.footer {
  background-color: #333;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 50px;
  border-top: 3px solid #555;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1 0 200px;
  margin-bottom: 20px;
  padding-right: 20px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #555;
}

.footer-links {
  list-style: none;
  color: white;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #555;
  font-size: 14px;
}

.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.modal-buttons button {
  margin: 10px;
  padding: 10px 20px;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('dropdown-arrow.svg') no-repeat right;
    background-size: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
	width: 70px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-column {
    flex: 0 0 100%;
    padding-right: 0;
  }
}