body {
    font-family: "Roboto Condensed", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 300;
  }

  p,
ul.leistungen {
  font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Roboto Condensed", sans-serif;
  color: #000;
  font-weight: 300;
}

.btn {
    font-family: "Lato", sans-serif;
    background: #393939;
    color: #fff;
    border-radius: 0;
  }

/* Form Styling */
.application-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 15px; /* Add consistent spacing between elements */
  }
  
  .application-form label {
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  .application-form input,
  .application-form select,
  .application-form textarea {
    width: 98%; /* Ensure inputs take full width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9rem;
  }
  
  .application-form textarea {
    resize: none; /* Prevent resizing for consistent appearance */
  }
  
  .application-form input[type="file"] {
    padding: 5px;
  }
  
  .application-form button.cta-button {
    margin-top: 20px;
    background-color: #BDCE00;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .application-form button.cta-button:hover {
    background-color: #A1B500;
  }

  .application-form label {
    display: flex; /* Use flexbox for label layout */
    align-items: center; /* Vertically align checkbox and text */
    gap: 10px; /* Adds spacing between the checkbox and text */
    justify-content: start; /* Ensures alignment starts from the left */
}

.application-form input[type="checkbox"] {
    margin: 0; /* Remove any unwanted margin */
    width: auto; /* Ensure checkbox stays its natural size */
}
.application-form label a {
  color: #BDCE00;
  text-decoration: underline;
  word-wrap: break-word; /* Ensure long links break properly */
}
  
  .application-form label a:hover {
    text-decoration: none;
  }


  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .application-form {
      padding: 15px; /* Reduce padding for smaller screens */
      gap: 10px; /* Reduce gap between elements */
    }
  
    .application-form input,
    .application-form select,
    .application-form textarea {
      font-size: 0.9rem; /* Adjust font size for inputs */
      padding: 8px; /* Reduce padding for inputs */
    }
  
    .application-form button.cta-button {
      font-size: 0.9rem; /* Smaller button font */
      padding: 10px; /* Reduce button padding */
    }
  }
  
  @media (max-width: 480px) {
    .application-form {
      padding: 10px; /* Further reduce padding */
      gap: 8px; /* Tighten spacing */
    }
  
    .application-form label {
      font-size: 0.8rem; /* Compact labels */
    }
  
    .application-form input,
    .application-form select,
    .application-form textarea {
      font-size: 0.85rem; /* Adjust input font size */
      padding: 6px; /* Compact input padding */
    }
  
    .application-form button.cta-button {
      font-size: 0.85rem; /* Compact button font */
      padding: 8px; /* Compact button padding */
    }
  }
  
  /* übersicht jobs */
  
  /* Job Listing Grid */
  .job-list {
    display: grid; /* Use grid layout for job items */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Auto-adjust columns */
    gap: 20px; /* Add space between job items */
    padding: 20px; /* Add padding around the grid */
    box-sizing: border-box; /* Include padding in width/height calculations */
    margin: 0 auto; /* Center the grid container */
    max-width: 50%; /* Ensure the grid doesn’t overflow the parent container */
    grid-template-columns: 1fr;
  }

  @media (max-width: 768px) {
    .job-list {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
      max-width: 100%;
    }
    
  
    .cta-button {
      font-size: 0.9rem; /* Adjust button size */
    }
  }
  
  @media (max-width: 480px) {
    .job-list {
      grid-template-columns: 1fr; 
      max-width: 100%;
    }
  }
  
  /* Individual Job Cards */
  .job-item {
    border: 1px solid #ccc; /* Light border */
    padding: 15px; /* Space inside the card */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-color: #fff; /* White background */
    text-align: center; /* Center align text */
    transition: transform 0.2s ease-in-out; /* Smooth hover effect */
  }
  
  .job-item:hover {
    transform: scale(1.03); /* Slightly enlarge on hover */
  }
  
  /* Job Title Styling */
  .job-item h2 {
    font-size: 1.2rem; /* Make titles readable */
    margin-bottom: 10px;
    word-wrap: break-word; /* Prevent overflow issues */
  }
  
  /* Job Details Styling */
  .job-item p {
  
    color: #666; /* Lighter text color */
    margin: 10px 0;
  }
  
  /* Button Styling */
  .cta-button {
    display: inline-block;
    background-color: #BDCE00; /* Button color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
  }
  
  .cta-button:hover {
    background-color: #BDCE00; /* Darker button on hover */
  }
  
  /* Mobile Responsiveness */
 
  
  
  /* application form  */
  
  /* Job Description Page Styles */
  
  /* Header Styles */
  .job-description-header {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }
  .job-description-header img {
    position: absolute; 
    left: 20px; 
    transform: translateY(0); 
}
  
.job-intro {
  background-color: #f9f9f9;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
  text-align: center;
  /* border: 1px solid #ccc; */
  font-size: 20px;
}

.job-intro p {
  margin: 0;
}

@media (max-width: 768px) {
  .job-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  }
  .job-intro {
    font-size: 18px;
  }
}

  .job-description-back {
    display: block;
    margin-bottom: 10px;
    color: #BDCE00;
    text-decoration: none;
    font-weight: bold;
  }
  
  .job-description-back:hover {
    text-decoration: underline;
    columns: #BDCE00;
  }
  
  .job-description-title {
    font-size: 2rem;
    color: #333;
    margin: 0;
  }
  
  /* Main Container Styles */
  .job-description-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .job-description-details {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* CTA Button */
  .job-description-cta {
    display: inline-block;
    background-color: #BDCE00;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
  }
  
  .job-description-cta:hover {
    background-color: #BDCE00;
  }
  
  
  
  @media (max-width: 768px) {
    .job-list {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust column size */
      padding: 10px; /* Reduce padding for smaller screens */
    }
  }



  
  .cta-button.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    pointer-events: none;
  }