@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Body and Global Styles */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f7f7f7;
  color: #333333;
}

.container {
  max-width: 800px;
  margin-top: 50px;
}

h1 {
  text-align: center;
  font-size: 32px;
  color: #007bff;
  margin-top: 0;
}

h3 {
  font-size: 24px;
  color: #333333;
}

h4 {
  font-size: 20px;
  color: #555555;
}

.form-group {
  margin-bottom: 30px;
}

textarea {
  resize: none;
}


#descriptionResult,
#titleResult {
  font-size: 16px;
  white-space: pre-wrap;
}

/* Buttons */
button[type="submit"],
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  transition: background-color 0.3s, border-color 0.3s;
}

button[type="submit"]:hover,
.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
}

/* Additional Custom Styles */

/* Example of custom styles for the generated job description and title */
#descriptionResult,
#titleResult {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#generatedDescription,
#generatedTitle {
  display: none;
  margin-top: 30px;
}

/* Example of custom styles for the forms */
form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* Preloader */
.jdg_preloader {
  /*position: fixed;*/
  /*top: 0;*/
  /*left: 0;*/
  /*width: 100vw;*/
  /*height: 100vh;*/
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  margin-bottom: 50px;
}


#workingHoursResult > table > thead {
    background: #23a123 !important;
    color: #fff !important;
}
#workingHoursResult > table > tfoot {
    background: #f16919 !important;
    color: #fff !important;
}