body {
 font-family: Arial, sans-serif;
 background-color: #000000;
 color: white;
 padding: 20px;
}

h2 {
 border-bottom: 2px solid #444;
 padding-bottom: 10px;
 margin-bottom: 20px;
}

label {
 display: block;
 margin-bottom: 10px;
}

input[type="text"],
input[type="number"],
input[type="date"],
select {
 padding: 10px;
 width: 100%;
 background-color: #222;
 border: none;
 color: white;
 border-radius: 5px;
 margin-bottom: 15px;
}

input[type="file"] {
 margin-bottom: 20px;
}

button {
 padding: 10px 15px;
 background-color: #007bff;
 border: none;
 border-radius: 5px;
 color: #ffffff;
 cursor: pointer;
 transition: background-color 0.2s;
}

button:hover {
 background-color: #0056b3;
}

p {
 font-size: 18px;
}





#topBar {
    background-color: transparent;
    height: 80px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    top: 0;
   position: fixed;
}



main {
    margin-top: 80px;
  background-color: black;
  color: white;
}



 .select2-dropdown {
        background-color: #222;
    color: white;
    }
    .select2-results__option--highlighted[aria-selected] {
        background-color: #4CAF50;
        color: white;
    }
    .select2-search__field {
      background-color: #000000;
        color: white;
    }
    .select2-selection__choice {
        background-color: #4CAF50;
        color: white;
    }
    .select2-selection__choice__remove {
        color: #fff;
    }

#select_working_type {
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
}