/*
Theme Name: Enfold Child
Template: enfold
*/


/* big-preview auf Job-Detailseiten ausblenden */
body.single-job_listing .big-preview.single-big {
  display: none !important;
}

ul.job_listings {
  display: flex;
  flex-direction: column;
  gap: 20px; 
  background-color: #ffffff;  
}

ul.job_listings li.job_listing {
  background-color: #f2f2f2 !important;  
  padding: 20px !important;              /* optional: Abstand innerhalb jedes Eintrags */
  border-radius: 4px;                    /* optional: leicht abgerundet */
}

ul.job_listings li.job_listing .company {
  font-size: 16px !important;
  margin-bottom: 8px !important; 
}

ul.job_listings li.job_listing .position {
  font-size: 20px !important;
  margin-bottom: 8px !important; 
}

@media only screen and (max-width: 767px) {
.textspalte {
padding-left: 0 !important;
padding-right: 0 !important;
}
}


#scroll-top-link {
  display: none !important;
}


#socket {
  background-color: #4a4a4a;
  text-align: center;
  padding: 20px 0;
}

#socket a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
}

#socket a:hover {
  text-decoration: underline;
}

#header_main {
padding-top: 20px; 
padding-bottom: 20px;
}

/*hide auto sidebar from magazine*/
.page-id-2967 .sidebar .widget_nav_hide_child {
display: none;
}

/*2.8 firefox problem*/
.avia-image-container-inner, .avia_image {
max-width: 100%;
}

#footer .widgettitle {
font-size: 18px;
font-weight: bold;
color: #ffffff;
}

#footer .textwidget,
#footer p {
font-size: 16px;
color: #ffffff;
line-height: 1.6;
}

#footer .widget a {
font-size: 16px;
color: #ffffff;
text-decoration: none;
}

#footer .widget a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-bullet {
color: white;
margin-right: 6px;
font-size: 0.8em;
}


/* =====================================================
   Button-Leiste zentrieren + Buttons nebeneinander + fetter Text
   ===================================================== */
.table-buttons {
  display: flex !important;          /* Flex-Container, damit Links nebeneinander stehen */
  justify-content: center;           /* Buttons mittig ausrichten */
  gap: 0.5rem;                        /* Abstand zwischen den Buttons */
  margin-bottom: 1rem;               /* Abstand unterhalb der Button-Leiste */
}

.table-buttons a.toggle-btn {
  display: inline-block;             /* Inline-Block, damit Padding und Border greifen */
  padding: 0.6rem 0.9rem;            /* Innenabstand (oben/unten, rechts/links) */
  border: 2px solid #333;            /* Grauer Rahmen */
  border-radius: 6px;                /* Abgerundete Ecken */
  background-color: #fff;            /* Weißer Hintergrund */
  color: #333;                       /* Dunkelgraue Schrift */
  font-weight: 700;                  /* Fett */
  font-size: 1.1rem;                 /* Etwas größere Schrift */
  text-decoration: none;             /* Kein Unterstrich */
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: Arial, sans-serif;
}

.table-buttons a.toggle-btn:hover {
  background-color: #333;            /* Hover: dunkler Hintergrund */
  color: #fff;                       /* Hover: weiße Schrift */
  border-color: #333;
}

.table-buttons a.toggle-btn.active {
  background-color: #333;            /* Aktiver Button: dunkler Hintergrund */
  color: #fff;                       /* Aktiver Button: weiße Schrift */
  border-color: #333;
}

