/* ============================================
   GLOBAL FONT STACK FÜR ALLE PLUGIN-SEITEN
   ============================================ */
/* Konsistente Font-Definition für alle Plugin-Komponenten */
/* "Nunito Sans" (Website-Standard) mit System-Font-Fallbacks für bessere Performance */
/* Font-Display: Swap für bessere Mobile-Performance (verhindert FOUT) */
@font-face {
    font-family: "Nunito Sans";
    font-display: swap;
}

.compleet-jobboard-list,
.compleet-jobboard-filter,
.compleet-jobboard-detail,
.aquitas-jobs-application-form,
.job-header,
.job-meta,
.job-contact,
.job-content,
.job-actions {
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ============================================
   GLOBAL FONT STACK FÜR ALLE PLUGIN-SEITEN
   ============================================ */
/* Konsistente Font-Definition für alle Plugin-Komponenten */
/* "Nunito Sans" (Website-Standard) mit System-Font-Fallbacks für bessere Performance */
/* Diese Fonts werden device-übergreifend geladen und funktionieren auch wenn "Nunito Sans" nicht verfügbar ist */
.compleet-jobboard-list,
.compleet-jobboard-filter,
.compleet-jobboard-detail,
.aquitas-jobs-application-form,
.job-header,
.job-meta,
.job-contact,
.job-content,
.job-actions,
.compleet-job-item,
.compleet-job-content,
.compleet-job-title,
.compleet-job-meta,
.compleet-filter,
.compleet-filter input,
.compleet-filter select,
.compleet-filter label,
/* Job-Titel über Headerbildern - explizit für Theme-Override */
.job-header .job-title,
.job-header h1.job-title,
h1.job-title,
.headerimage .job-title,
.headerimage h1.job-title,
.wpb_raw_code.headerimage .job-title,
.wpb_raw_code.headerimage h1.job-title,
.compleet-job-header .compleet-job-title,
.compleet-job-header h1,
.compleet-job-image + h1,
.compleet-job-image + .compleet-job-title {
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* Job Detail Shortcode Styles */
.job-header,
.job-meta,
.job-contact,
.job-content,
.job-actions {
    margin-bottom: 2em;
}

/* Fix: Entferne margin-bottom von .job-header innerhalb .headerimage (verursacht 40px Differenz) */
.headerimage .job-header,
.wpb_raw_code.headerimage .wpb_wrapper .job-header,
.wpb_wrapper .headerimage .job-header {
    margin-bottom: 0 !important;
}

/* Fix: Entferne min-height von .headerimage (verursacht 35px Differenz auf iPhone SE) */
.headerimage,
.wpb_raw_code.headerimage {
    min-height: 0 !important;
    height: auto !important;
}

.job-header .job-image {
    margin-bottom: 1em;
}

.job-header .job-image img {
    max-width: 100%;
    height: auto;
}

.job-header .job-title {
    margin: 0 0 0.5em;
    font-size: 2em;
    line-height: 1.2;
}

.job-meta > div,
.job-contact > div {
    margin-bottom: 0.5em;
}

.job-meta .label,
.job-contact .label {
    font-weight: bold;
    margin-right: 0.5em;
}

/* Content Module Styles */
.content-module {
    margin-bottom: 2em;
}

.content-module h2 {
    font-weight: bold;
    margin-bottom: 1em;
}

.content-module p {
    margin-bottom: 1em;
}

.content-module ul {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.content-module li {
    margin-bottom: 0.5em;
}

.content-module h3 {
    margin: 0 0 0.5em;
    font-size: 1.2em;
}

.module-content {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.module-content ul {
    margin-left: 1.5em;
    list-style-type: disc;
}

.job-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-items: center;
}

.share-buttons {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    padding: 0.5em 1em;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-size: 0.9em;
}

.share-linkedin {
    background-color: #0077b5;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-facebook {
    background-color: #1877f2;
}

.share-email {
    background-color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-header .job-title {
        font-size: 1.5em;
    }
    
    .job-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-buttons a {
        text-align: center;
        justify-content: center;
    }
}

/* Entferne zusätzliche Abstände bei verschachtelten Elementen */
.content-module > *:first-child {
    margin-top: 0;
}

.content-module > *:last-child {
    margin-bottom: 0;
}

/* Stelle sicher, dass der Content direkt nach der Überschrift beginnt */
.content-module h2 + .module-content {
    margin-top: 0;
}

/* Einheitliche Textformatierung für die Module */
.module-company_info,
.module-benefits,
.module-tasks,
.module-requirements,
.module-next_steps {
    margin: 0;
    padding: 0;
    line-height: inherit;
}

.panel-title {
    margin: 0 !important;
    padding: 0 !important;
}

.panel-heading {
    margin: 0 !important;
    padding: 0 !important;
}

.panel.panel-default {
    margin: 0 !important;
    padding: 0 !important;
}

/* Entferne zusätzliche Abstände bei Panel-Elementen */
.content-module .panel,
.content-module .panel-heading,
.content-module .panel-title {
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
}

/* Verhindere Accordion-Styling für unsere Headers */
.content-module h2.plain-header {
    font-size: 24px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 1em !important;
    padding: 0 !important;
    background: none !important;
    cursor: default !important;
}

.content-module h2.plain-header:hover,
.content-module h2.plain-header:focus {
    background: none !important;
    color: inherit !important;
}

.content-module .plain-content {
    margin: 0 !important;
    padding: 0 !important;
}

/* Stelle sicher, dass keine Accordion-Funktionalität greift */
.content-module {
    margin-bottom: 2em !important;
    padding: 0 !important;
    background: none !important;
}

/* Kontakt-Bereich Styling */
.job-contact > div {
    margin-bottom: 1em;
}

.job-contact .label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.25em;
}

.job-contact .value {
    display: block;
}

/* Wenn keine Labels angezeigt werden, mehr Abstand zwischen den Werten */
.job-contact .value:only-child {
    margin-bottom: 1em;
}

/* Links im Kontakt-Bereich */
.job-contact .value a {
    color: inherit;
    text-decoration: none;
}

.job-contact .value a:hover {
    text-decoration: underline;
}

.aquitas-jobs-application-form {
    max-width: 800px;
    margin: 2em auto;
    padding: 1em;
}

.aquitas-jobs-application-form .form-section {
    margin-bottom: 2em;
    padding: 1.5em;
    background: #f8f9fa;
    border-radius: 8px;
}

.aquitas-jobs-application-form h3 {
    margin-top: 0;
    margin-bottom: 1.5em;
    color: #333;
    font-size: 1.4em;
}

.aquitas-jobs-application-form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5em;
    margin-bottom: 1em;
}

.aquitas-jobs-application-form .form-group {
    flex: 1;
    min-width: 250px;
    padding: 0.5em;
}

.aquitas-jobs-application-form label {
    display: block;
    margin-bottom: 0.5em;
    color: #555;
    font-weight: 500;
}

.aquitas-jobs-application-form input[type="text"],
.aquitas-jobs-application-form input[type="email"],
.aquitas-jobs-application-form input[type="tel"],
.aquitas-jobs-application-form input[type="date"],
.aquitas-jobs-application-form select,
.aquitas-jobs-application-form textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.aquitas-jobs-application-form input[type="text"]:focus,
.aquitas-jobs-application-form input[type="email"]:focus,
.aquitas-jobs-application-form input[type="tel"]:focus,
.aquitas-jobs-application-form input[type="date"]:focus,
.aquitas-jobs-application-form select:focus,
.aquitas-jobs-application-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    outline: none;
}

.aquitas-jobs-application-form input[type="file"] {
    width: 100%;
    padding: 0.8em;
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.aquitas-jobs-application-form small {
    display: block;
    margin-top: 0.5em;
    color: #666;
    font-size: 0.85em;
}

.aquitas-jobs-application-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    cursor: pointer;
}

.aquitas-jobs-application-form input[type="checkbox"] {
    margin-top: 0.3em;
}

.aquitas-jobs-application-form .submit-button {
    display: inline-block;
    padding: 1em 2em;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.aquitas-jobs-application-form .submit-button:hover {
    background: #0056b3;
}

.aquitas-jobs-application-form .submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.aquitas-jobs-application-form .form-feedback {
    margin-top: 1.5em;
    padding: 1em;
    border-radius: 4px;
}

.aquitas-jobs-application-form .success-message {
    background: #d4edda;
    color: #155724;
    padding: 1em;
    border-radius: 4px;
}

.aquitas-jobs-application-form .error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1em;
    border-radius: 4px;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    .aquitas-jobs-application-form .form-group {
        min-width: 100%;
    }

    .aquitas-jobs-application-form .submit-button {
        width: 100%;
    }
}

/* Header und Filter Styles */
.compleet-jobboard-filter {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2rem 1rem;
    clear: both;
}

.compleet-filters {
    display: grid;
    grid-template-columns: 1fr 1fr 120px;
    gap: 1.5rem;
    align-items: end;
}

.compleet-filter {
    display: flex;
    flex-direction: column;
    position: relative;
}

.compleet-filter label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compleet-filter input,
.compleet-filter select {
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
    transition: all 0.2s ease;
}

.compleet-filter input:focus,
.compleet-filter select:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.compleet-filter-submit {
    background-color: #000;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 45px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.compleet-filter-submit:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Location Suggestions */
.location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 4px;
    display: none;
}

.location-suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.location-suggestion:hover {
    background-color: #f5f5f5;
}

/* Responsive Design für Filter */
@media (max-width: 900px) {
    .compleet-jobboard-filter {
        position: relative;
        width: 100%;
        margin: 0 auto 2rem;
        padding: 1.5rem 1rem;
    }
}

    .compleet-filters {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .compleet-filter-submit {
        width: 100%;
    }
}

/* Stelle sicher, dass die Stellenliste unter dem Filter beginnt */
.compleet-jobboard-list {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Grid Layout */
.compleet-jobs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .compleet-jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .compleet-jobs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Job Items */
article.compleet-job-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 2px;
    padding: 27px;
    margin: 0;
    height: 100%;
    transition: all 0.2s ease;
}

article.compleet-job-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Job Content */
.compleet-job-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Job Titel */
h3.compleet-job-title {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.compleet-job-title a {
    color: inherit;
    text-decoration: none;
}

.compleet-job-title a:hover {
    color: inherit;
    opacity: 0.8;
}

/* Job Header Styles */
.compleet-job-header {
    margin-bottom: 2rem;
}

.compleet-job-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.compleet-job-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-height: 400px;
}

.compleet-job-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Meta Informationen */
.compleet-job-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.compleet-job-location,
.compleet-job-type,
.compleet-job-category,
.compleet-job-modified,
.compleet-job-id {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    font-size: 0.95rem;
    flex: 1 1 auto;
}

.compleet-job-location i,
.compleet-job-type i,
.compleet-job-category i,
.compleet-job-modified i,
.compleet-job-id i {
    width: 20px;
    text-align: center;
    color: #2db8c5;
    font-size: 1.1rem;
}

.compleet-job-location,
.compleet-job-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Button Container */
.compleet-job-actions {
    margin-top: auto;
    padding-top: 1rem;
}

/* Button Style - Wird durch aquitas-buttons-global.css überschrieben */
/* Alte compleet-button Styles bleiben für Rückwärtskompatibilität, 
   aber werden durch .aquitas-btn Klassen überschrieben */
.compleet-button:not(.aquitas-btn) {
    display: inline-block;
    font-size: 12px;
    padding: 13px 31px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
}

/* WPBakery Container Anpassungen */
.wpb_wrapper .compleet-jobboard-list {
    width: 100%;
}

.uncol.style-light .compleet-job-item {
    background-color: #ffffff;
}

.uncol.style-dark .compleet-job-item {
    background-color: rgba(255,255,255,0.05);
}

/* Responsive Anpassungen */
@media (max-width: 959px) {
    article.compleet-job-item {
        padding: 18px;
    }
    
    .compleet-job-title {
        font-size: 1rem;
    }
}

/* Filter Bereich */
.compleet-jobboard-filter {
    margin-bottom: 2rem;
}

.compleet-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.compleet-filter {
    flex: 1 1 200px;
}

.compleet-filter input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #eaeaea;
    border-radius: 2px;
    font-size: 0.9rem;
}

/* Ortsvorschläge */
.location-suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 2px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.location-suggestion {
    padding: 10px 15px;
    cursor: pointer;
}

.location-suggestion:hover {
    background: #f7f7f7;
}

/* Keine Jobs gefunden */
.no-jobs-found {
    text-align: center;
    padding: 3rem;
    color: #777777;
    background: #f7f7f7;
    border-radius: 2px;
}

/* WPBakery Anpassungen */
.wpb_wrapper .compleet-jobboard-list {
    width: 100%;
}

/* Theme-spezifische Anpassungen */
.style-light .compleet-job-item {
    background: #fff;
}

.style-dark .compleet-job-item {
    background: rgba(255,255,255,0.05);
}

/* Reset für WPBakery Container */
.wpb_wrapper .compleet-jobboard-list {
    width: 100% !important;
    max-width: 100% !important;
}

/* Grid-Layout mit höchster Spezifität */
.wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Job-Items */
.wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid .compleet-job-item {
    display: flex !important;
    flex-direction: column !important;
    background: white !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    margin: 0 !important;
    height: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Job-Content */
.wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid .compleet-job-content {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* WPBakery spezifische Grid-Styles */
.wpb_wrapper .wpb_raw_code.wpb_content_element .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wpb_wrapper .wpb_raw_code.wpb_content_element .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid .compleet-job-item {
    display: flex !important;
    flex-direction: column !important;
    background: white !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    margin: 0 !important;
    height: 100% !important;
    width: auto !important;
    box-sizing: border-box !important;
}

.wpb_wrapper .wpb_raw_code.wpb_content_element .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid .compleet-job-content {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.wpb_wrapper .wpb_raw_code.wpb_content_element .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid .compleet-job-title {
    margin: 0 0 1rem 0 !important;
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
}

.wpb_wrapper .wpb_raw_code.wpb_content_element .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid .compleet-job-meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem !important;
    color: #666 !important;
}

.wpb_wrapper .wpb_raw_code.wpb_content_element .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid .compleet-job-actions {
    margin-top: auto !important;
    text-align: center !important;
}

/* Responsive Breakpoints mit höchster Spezifität */
@media (min-width: 768px) {
    .wpb_wrapper .wpb_raw_code.wpb_content_element .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .wpb_wrapper .wpb_raw_code.wpb_content_element .wpb_wrapper .compleet-jobboard-list .compleet-jobs-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Minimales Basis-CSS */
.compleet-jobboard-list {
    width: 100%;
}

.compleet-jobs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .compleet-jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .compleet-jobs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

article.compleet-job-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.compleet-job-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.compleet-job-title {
    margin: 0 0 1rem;
}

.compleet-job-meta {
    margin-bottom: 1.5rem;
}

.compleet-job-actions {
    margin-top: auto;
}

/* Responsive Design für Job Detail Page */
@media (max-width: 768px) {
    .compleet-job-image img {
        max-height: 250px;
    }
    
    .compleet-job-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .compleet-job-meta {
        gap: 0.75rem;
    }
    
    .compleet-job-location,
    .compleet-job-type,
    .compleet-job-category,
    .compleet-job-modified,
    .compleet-job-id {
        font-size: 0.85rem;
    }
    
    .compleet-job-location i,
    .compleet-job-type i,
    .compleet-job-category i,
    .compleet-job-modified i,
    .compleet-job-id i {
        font-size: 1rem;
        width: 18px;
    }
    
    .compleet-job-header {
        margin-bottom: 1.5rem;
    }
    
    .compleet-job-image {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .compleet-job-image img {
        max-height: 200px;
    }
    
    .compleet-job-title {
        font-size: 1.25rem;
    }
    
    .compleet-job-meta {
        gap: 0.5rem;
    }
    
    .compleet-job-location,
    .compleet-job-type,
    .compleet-job-category,
    .compleet-job-modified,
    .compleet-job-id {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .compleet-job-location i,
    .compleet-job-type i,
    .compleet-job-category i,
    .compleet-job-modified i,
    .compleet-job-id i {
        margin-right: 0;
        width: auto;
    }
}

/* Filter */
.compleet-jobboard-filter {
    margin-bottom: 2rem;
}

.compleet-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.compleet-filter {
    flex: 1 1 200px;
}

.compleet-filter input {
    width: 100%;
}

/* Ortsvorschläge */
.location-suggestions {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

/* Keine Jobs gefunden */
.no-jobs-found {
    text-align: center;
    padding: 3rem;
} 