/* MyListing Category Selector – 19aad0bc */

.mlcs-overlay-19aad0bc {
    position: relative;
    background: #f5f6fa;
    padding: 48px 24px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.mlcs-container-19aad0bc {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.mlcs-title-19aad0bc {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.mlcs-subtitle-19aad0bc {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
}

.mlcs-grid-19aad0bc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    justify-items: center;
}

.mlcs-card-19aad0bc {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px 20px 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mlcs-card-19aad0bc:hover,
.mlcs-card-19aad0bc:focus {
    border-color: #e63946;
    box-shadow: 0 8px 24px rgba(230,57,70,0.15);
    transform: translateY(-4px);
    outline: none;
}

.mlcs-card-19aad0bc:focus-visible {
    outline: 3px solid #e63946;
    outline-offset: 2px;
}

.mlcs-icon-19aad0bc {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.25s ease;
}

.mlcs-card-19aad0bc:hover .mlcs-icon-19aad0bc {
    transform: scale(1.1);
}

.mlcs-icon-19aad0bc i {
    color: #ffffff;
    font-size: 1.5rem;
}

.mlcs-name-19aad0bc {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
    line-height: 1.4;
    flex: 1;
}

.mlcs-arrow-19aad0bc {
    margin-top: 14px;
    color: #e63946;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-4px);
}

.mlcs-card-19aad0bc:hover .mlcs-arrow-19aad0bc {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .mlcs-grid-19aad0bc {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .mlcs-title-19aad0bc {
        font-size: 1.5rem;
    }
    .mlcs-card-19aad0bc {
        padding: 24px 12px 16px;
    }
    .mlcs-icon-19aad0bc {
        width: 52px;
        height: 52px;
    }
    .mlcs-icon-19aad0bc i {
        font-size: 1.2rem;
    }
}

body.admin-bar .mlcs-overlay-19aad0bc {
    padding-top: calc(48px + var(--wp-admin--admin-bar--height, 32px));
}

/* 
 * Dynamic Field Styling (Injected via body class) 
 * Example: if body has class 'ml-cat-elektriker-haustechnik', we can hide specific sections
 */
body.ml-cat-dachdecker-baumeister .fieldset-rent-details,
body.ml-cat-dachdecker-baumeister .fieldset-sale-price {
    background-color: #fcfcfc;
    border-radius: 8px;
    padding: 15px;
    border-left: 3px solid #e63946;
}

/* Highlight specific fields for better UI */
.job-manager-form fieldset {
    transition: all 0.3s ease;
}
