body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #f0f0f0;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

h1 {
  margin-bottom: 40px;
  color: #ffffff;
}

.jobs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.job h2 {
  margin-top: 0;
  color: #F3A420;
}

.job button {
  margin-top: 10px;
  background-color: #F3A420;
  border: none;
  padding: 10px 20px;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  height:35px;
}

.job button:hover {
  background-color: #F3A420;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease-in-out;
  overflow-y:scroll;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.modal-content {
  background: #1c1c1c;
  color: #f5f5f5;
  border-radius: 10px;
  padding: 30px 25px;
  width: 90%;
  max-width: 500px;
  margin: 60px auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.3s ease-in-out;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: center;
  color: #F3A420;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-content input,
.modal-content textarea {
  background: #2d2d2d;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 12px;
  color: #fff;
  transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
  border-color: #F3A420;
  outline: none;
  box-shadow: 0 0 0 2px rgba(97, 218, 251, 0.3);
}

.modal-content button[type="submit"] {
  background: #F3A420;
  color: #000;
  border: none;
  font-weight: bold;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content button[type="submit"]:hover {
  background: #21a1f1;
}
.modal-content select {
  background: #2d2d2d;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 12px;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.3s ease;
  appearance: none; /* remove default arrow on some browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
  /*background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20fill%3D%22white%22%20height%3D%2220%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2220%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22/%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22/%3E%3C/svg%3E");*/
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.modal-content select:focus {
  border-color: #61dafb;
  outline: none;
  box-shadow: 0 0 0 2px rgba(97, 218, 251, 0.3);
}


/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover {
  color: #fff;
}

@media only screen and (max-width:520px){
    .job button{
        height:40px;
    }
    .job{
        display:block;
    }
