/*!
 * PSM Simple Inline Terms - Professional Solution
 * Clean, simple inline display with clickable terms that look like normal text
 */

/* Main container */
.psm-terms-inline-list {
    display: inline;
    font-family: inherit;
    color: #333;
    line-height: inherit;
}

/* Individual term styling */
.psm-term-text {
    display: inline;
    color: #333;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    /* Looks exactly like normal text */
}

/* Icon styling */
.psm-term-text .psm-term-icon-emoji {
    font-size: 1em;
    margin-left: 4px;
    vertical-align: baseline;
}

.psm-term-text .psm-term-icon-img {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    vertical-align: middle;
    border-radius: 2px;
}

/* NO HOVER EFFECTS AT ALL */
.psm-term-text:hover,
.psm-term-text:focus,
.psm-term-text:active,
.psm-term-text:visited {
    color: #333;
    text-decoration: none;
    background: none;
    transform: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

/* RTL Support */
.rtl .psm-term-text .psm-term-icon-emoji,
.rtl .psm-term-text .psm-term-icon-img {
    margin-left: 0;
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .psm-term-text .psm-term-icon-img {
        width: 14px;
        height: 14px;
    }
}

/* Print friendly */
@media print {
    .psm-terms-inline-list {
        color: #000;
    }
    
    .psm-term-text {
        color: #000;
    }
}

/* ===== BADGE STYLES - MINIMAL & PROFESSIONAL ===== */

/* Badge container */
.psm-terms-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
    align-items: center;
}

/* Individual badge */
.psm-term-badge-clean {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    /* Minimal, clean design */
}

/* Badge icon styling */
.psm-term-badge-clean .psm-term-icon-emoji {
    font-size: 0.875rem;
    margin-left: 4px;
    vertical-align: baseline;
}

.psm-term-badge-clean .psm-term-icon-img {
    width: 45px;
    height: 45px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 2px;
    vertical-align: middle;
}

/* NO HOVER EFFECTS - stays exactly the same */
.psm-term-badge-clean:hover,
.psm-term-badge-clean:focus,
.psm-term-badge-clean:active {
    background: #f8f9fa;
    color: #495057;
    border-color: #e9ecef;
    transform: none;
    box-shadow: none;
    text-decoration: none;
    cursor: pointer;
}

/* RTL Support for badges */
.rtl .psm-term-badge-clean .psm-term-icon-emoji,
.rtl .psm-term-badge-clean .psm-term-icon-img {
    margin-left: 0;
    margin-right: 4px;
}

/* Responsive badges */
@media (max-width: 768px) {
    .psm-terms-badges-container {
        gap: 6px;
    }
    
    .psm-term-badge-clean {
        padding: 4px 8px;
        font-size: 0.8rem;
        border-radius: 12px;
    }
    
    .psm-term-badge-clean .psm-term-icon-img {
        width: 12px;
        height: 12px;
    }
}

/* Print friendly badges */
@media print {
    .psm-term-badge-clean {
        background: #f5f5f5;
        color: #000;
        border-color: #ddd;
    }
}