.fv-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.fv-card-status {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fv-status-top { background: #0056d6; }
.fv-status-empf { background: #2a7f2a; }
.fv-status-new { background: #d67f00; }

.fv-status-icon {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}


/* ============================================
   WRAPPER – sauber, modern, zentriert
   ============================================ */
.worker-search-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ============================================
   ANIMIERTE ÜBERSCHRIFT – leicht, elegant
   ============================================ */
.worker-search-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #222;
    position: relative;
    display: inline-block;
}

.worker-search-title span {
    display: inline-block;
    animation: floatTitle 3s ease-in-out infinite;
}

@keyframes floatTitle {
    0%   { transform: translateY(0); opacity: 1; }
    40%  { transform: translateY(-4px); opacity: 1; }
    60%  { transform: translateY(0); opacity: 1; }
    80%  { opacity: 0.95; }
    100% { opacity: 1; }
}

/* Untertitel */
.worker-search-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* ============================================
   SUCHFELD – Freitext + Button
   ============================================ */
.worker-search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.worker-search-box input[type="text"],
.worker-search-box input[type="search"] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

.worker-search-box button {
    padding: 10px 18px;
    background: #0056d6;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
}

.worker-search-box button:hover {
    background: #0043a5;
}

/* ============================================
   FILTER – Bereich, Gewerk, Bundesland, Stadt, PLZ
   ============================================ */
.worker-search-filters {
    margin-bottom: 15px;
}

.worker-search-filters h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.worker-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.worker-filter-row select,
.worker-filter-row input {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    min-width: 180px;
}

.worker-filter-row input.worker-filter-plz {
    width: 120px;
}

/* Hinweis */
.worker-filter-hint {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

/* ============================================
   ERGEBNISLISTE – Worker Cards
   ============================================ */
.worker-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.worker-result-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.worker-result-title {
    font-size: 17px;
    font-weight: 600;
    color: #0056d6;
    text-decoration: none;
}

.worker-result-title:hover {
    text-decoration: underline;
}

.worker-result-excerpt {
    font-size: 14px;
    color: #555;
    margin-top: 4px;
}

/* Keine Treffer */
.worker-no-results {
    font-size: 14px;
    color: #666;
    padding: 10px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .worker-search-box {
        flex-direction: column;
    }

    .worker-filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .worker-filter-row select,
    .worker-filter-row input {
        width: 100%;
        min-width: 0;
    }
}

/* ============================================
   FIRMENFORMULAR – moderner, cleaner Wrapper
   ============================================ */

.fv-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Labels */
.fv-form-wrapper label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

/* Inputs */
.fv-form-wrapper input[type="text"],
.fv-form-wrapper input[type="email"],
.fv-form-wrapper input[type="url"],
.fv-form-wrapper input[type="number"],
.fv-form-wrapper textarea,
.fv-form-wrapper select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    box-sizing: border-box;
    margin-bottom: 18px;
}


.fv-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.fv-card-item {
    width: calc(50% - 20px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fv-card-logo {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.fv-card-content {
    padding: 15px;
}

.fv-card-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.fv-card-firma {
    font-size: 15px;
    color: #555;
}

/* Profil bearbeiten Button */
.fv-edit-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #ff7a00; /* Orange */
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
    animation: fvBlink 1.4s infinite ease-in-out;
}

/* Hover */
.fv-edit-btn:hover {
    background: #ff9a33;
    box-shadow: 0 6px 18px rgba(255, 122, 0, 0.55);
}

/* Blink-Animation */
@keyframes fvBlink {
    0%   { opacity: 1; }
    50%  { opacity: 0.55; }
    100% { opacity: 1; }
}




.fv-pagination {
    margin: 30px 0;
    text-align: center;
}

.fv-pagination-list {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 8px;
}

.fv-pagination-item a {
    padding: 8px 14px;
    border-radius: 6px;
    background: #e8f1ff;
    color: #0056d6;
    text-decoration: none;
    font-weight: 600;
}

.fv-pagination-item .current {
    background: #ff7a00;
    color: #fff;
}

.fv-page-arrow {
    color: #0056d6;
    font-size: 18px;
    font-weight: 700;
}



.fv-expert-box {
    position: relative;
}

.fv-expert-ribbon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6600;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
