/**
 * Live Search Overlay Pro Enhanced Styles v1.3.0
 * Features: Movie character search icons + Customizable result layouts (1, 2, 3 columns)
 */

/* Search trigger button styles */
.lso-search-trigger {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lso-search-trigger:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.lso-search-trigger:active {
    transform: translateY(0);
}

.lso-search-trigger.lso-icon-style {
    width: 44px;
    height: 44px;
    padding: 12px;
    border-radius: 50%;
    justify-content: center;
}

.lso-search-trigger.lso-icon-style svg {
    width: 20px;
    height: 20px;
}

/* Enhanced Mobile Floating Search Button */
.lso-floating-button {
    position: fixed !important;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999998 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(8px);
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
}

.lso-floating-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    pointer-events: none;
}

.lso-floating-button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.lso-floating-button:active {
    transform: scale(0.95);
}

/* Button Styles */
.lso-button-style-icon .lso-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lso-button-style-text .lso-button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    white-space: nowrap;
}

.lso-button-style-icon_text {
    gap: 8px;
    padding: 0 16px;
}

.lso-button-style-icon_text .lso-button-icon,
.lso-button-style-icon_text .lso-button-text {
    display: flex;
    align-items: center;
}

.lso-button-style-icon_text .lso-button-text {
    font-size: 13px;
    font-weight: 600;
}

/* Button Shapes */
.lso-button-shape-circle {
    border-radius: 50%;
}

.lso-button-shape-square {
    border-radius: 8px;
}

.lso-button-shape-rounded {
    border-radius: 16px;
}

.lso-button-shape-pill {
    border-radius: 100px;
}

/* Button Sizes */
.lso-button-size-small {
    width: 40px;
    height: 40px;
}

.lso-button-size-small svg {
    width: 18px;
    height: 18px;
}

.lso-button-size-small .lso-button-text {
    font-size: 11px;
}

.lso-button-size-medium {
    width: 56px;
    height: 56px;
}

.lso-button-size-medium svg {
    width: 22px;
    height: 22px;
}

.lso-button-size-medium .lso-button-text {
    font-size: 13px;
}

.lso-button-size-large {
    width: 72px;
    height: 72px;
}

.lso-button-size-large svg {
    width: 28px;
    height: 28px;
}

.lso-button-size-large .lso-button-text {
    font-size: 15px;
}

.lso-button-size-xlarge {
    width: 88px;
    height: 88px;
}

.lso-button-size-xlarge svg {
    width: 32px;
    height: 32px;
}

.lso-button-size-xlarge .lso-button-text {
    font-size: 16px;
}

/* Adjust sizes for text and icon+text styles */
.lso-button-style-text.lso-button-size-small {
    width: auto;
    min-width: 60px;
    height: 36px;
    padding: 0 12px;
}

.lso-button-style-text.lso-button-size-medium {
    width: auto;
    min-width: 80px;
    height: 44px;
    padding: 0 16px;
}

.lso-button-style-text.lso-button-size-large {
    width: auto;
    min-width: 100px;
    height: 56px;
    padding: 0 20px;
}

.lso-button-style-text.lso-button-size-xlarge {
    width: auto;
    min-width: 120px;
    height: 68px;
    padding: 0 24px;
}

.lso-button-style-icon_text.lso-button-size-small {
    width: auto;
    min-width: 80px;
    height: 36px;
    padding: 0 12px;
}

.lso-button-style-icon_text.lso-button-size-medium {
    width: auto;
    min-width: 100px;
    height: 48px;
    padding: 0 16px;
}

.lso-button-style-icon_text.lso-button-size-large {
    width: auto;
    min-width: 120px;
    height: 60px;
    padding: 0 20px;
}

.lso-button-style-icon_text.lso-button-size-xlarge {
    width: auto;
    min-width: 140px;
    height: 72px;
    padding: 0 24px;
}

/* FIXED: Floating Button Positions with !important to prevent conflicts */
.lso-floating-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
    top: auto !important;
    left: auto !important;
}

.lso-floating-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
    top: auto !important;
    right: auto !important;
}

.lso-floating-top-right {
    top: 20px !important;
    right: 20px !important;
    bottom: auto !important;
    left: auto !important;
}

.lso-floating-top-left {
    top: 20px !important;
    left: 20px !important;
    bottom: auto !important;
    right: auto !important;
}

.lso-floating-middle-right {
    top: 50% !important;
    right: 20px !important;
    bottom: auto !important;
    left: auto !important;
    transform: translateY(-50%) !important;
}

.lso-floating-middle-left {
    top: 50% !important;
    left: 20px !important;
    bottom: auto !important;
    right: auto !important;
    transform: translateY(-50%) !important;
}

.lso-floating-middle-right:hover {
    transform: translateY(-50%) scale(1.08) !important;
}

.lso-floating-middle-left:hover {
    transform: translateY(-50%) scale(1.08) !important;
}

/* Device Visibility Controls */
.lso-floating-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .lso-floating-mobile-only {
        display: flex;
    }
}

.lso-floating-all-devices {
    display: flex;
}

/* Movie Character Icon Animations */
.lso-button-icon svg {
    animation: lso-character-pulse 3s ease-in-out infinite;
}

@keyframes lso-character-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.03);
    }
}

.lso-floating-button:hover .lso-button-icon svg {
    animation: lso-character-action 0.8s ease-in-out;
}

@keyframes lso-character-action {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 3px currentColor);
    }
    25% {
        transform: scale(1.05) rotate(-3deg);
        filter: drop-shadow(0 0 6px currentColor);
    }
    50% {
        transform: scale(1.1) rotate(3deg);
        filter: drop-shadow(0 0 8px currentColor);
    }
    75% {
        transform: scale(1.05) rotate(-2deg);
        filter: drop-shadow(0 0 6px currentColor);
    }
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 3px currentColor);
    }
}

/* FIXED: Overlay Modal Styles with maximum z-index and positioning */
.lso-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(8px);
    z-index: 2147483647 !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
}

.lso-overlay.lso-active {
    opacity: 1 !important;
    visibility: visible !important;
}

.lso-overlay-content {
    background: white !important;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    margin: 5vh auto;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: translateY(-50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2147483647 !important;
}

.lso-overlay.lso-active .lso-overlay-content {
    transform: translateY(0) scale(1) !important;
}

/* Enhanced Search Header */
.lso-search-header {
    display: flex;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #e5e5e5;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.lso-search-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 0 18px;
    transition: all 0.3s ease;
}

.lso-search-container:focus-within {
    border-color: #0073aa;
    box-shadow: 0 0 0 4px rgba(0, 115, 170, 0.15);
}

.lso-search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 16px 12px 16px 0;
    font-size: 18px;
    color: #333;
    background: transparent;
    position: relative;
}

.lso-search-input::placeholder {
    color: #999;
}

.lso-search-icon {
    color: #666;
    margin-right: 12px;
    flex-shrink: 0;
}

.lso-close-btn {
    background: none;
    border: none;
    padding: 10px;
    margin-left: 18px;
    cursor: pointer;
    color: #666;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.lso-close-btn:hover {
    background: #e5e5e5;
    color: #333;
    transform: scale(1.05);
}

/* NEW: Search Results Container with Layout Support */
.lso-search-results {
    max-height: calc(90vh - 140px);
    overflow-y: auto;
    padding: 0;
    position: relative;
}

.lso-search-suggestions {
    padding: 48px 28px;
    text-align: center;
    color: #666;
}

.lso-search-suggestions p {
    margin: 0;
    font-size: 16px;
}

.lso-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 28px;
    color: #666;
}

.lso-loading::before {
    content: "";
    width: 24px;
    height: 24px;
    border: 3px solid #e5e5e5;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: lso-spin 1s linear infinite;
    margin-right: 12px;
}

@keyframes lso-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lso-no-results {
    padding: 48px 28px;
    text-align: center;
    color: #666;
}

/* NEW: Customizable Search Results Layouts */
.lso-results-container {
    padding: 20px 28px;
}

/* Single Column Layout (Default) */
.lso-results-single .lso-result-item {
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    margin-bottom: 16px;
}

.lso-results-single .lso-result-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-decoration: none;
    color: inherit;
    transform: translateX(4px);
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Two Column Layout */
.lso-results-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lso-results-double .lso-result-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background: white;
}

.lso-results-double .lso-result-item:hover {
    border-color: #0073aa;
    box-shadow: 0 8px 24px rgba(0, 115, 170, 0.15);
    transform: translateY(-4px);
}

/* Three Column Layout */
.lso-results-triple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lso-results-triple .lso-result-item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background: white;
}

.lso-results-triple .lso-result-item:hover {
    border-color: #0073aa;
    box-shadow: 0 6px 20px rgba(0, 115, 170, 0.15);
    transform: translateY(-2px);
}

/* Result Item Components */
.lso-result-thumbnail {
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Single column thumbnails */
.lso-results-single .lso-result-thumbnail {
    width: 80px;
    height: 80px;
}

/* Double column thumbnails */
.lso-results-double .lso-result-thumbnail {
    width: 100%;
    height: 120px;
    margin-bottom: 12px;
}

/* Triple column thumbnails */
.lso-results-triple .lso-result-thumbnail {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}

.lso-result-content {
    flex: 1;
    min-width: 0;
}

.lso-result-title {
    font-weight: 600;
    color: #0073aa;
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* Title sizes for different layouts */
.lso-results-single .lso-result-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.lso-results-double .lso-result-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.lso-results-triple .lso-result-title {
    font-size: 14px;
    margin-bottom: 6px;
}

.lso-result-item:hover .lso-result-title {
    color: #005a87;
}

.lso-result-excerpt {
    color: #666;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

/* Excerpt sizes for different layouts */
.lso-results-single .lso-result-excerpt {
    font-size: 14px;
    margin-bottom: 10px;
}

.lso-results-double .lso-result-excerpt {
    font-size: 13px;
    margin-bottom: 8px;
}

.lso-results-triple .lso-result-excerpt {
    font-size: 12px;
    margin-bottom: 6px;
}

.lso-result-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

.lso-results-triple .lso-result-meta {
    gap: 8px;
    font-size: 11px;
}

.lso-result-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lso-result-type {
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #e5e5e5 0%, #f0f0f0 100%);
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: capitalize;
    font-weight: 500;
}

.lso-results-triple .lso-result-type {
    padding: 1px 6px;
    font-size: 10px;
}

/* Search Summary */
.lso-search-summary {
    padding: 16px 28px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* No thumbnail placeholder */
.lso-no-thumbnail {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.lso-no-results-icon,
.lso-error-icon,
.lso-suggestions-icon {
    margin-bottom: 16px;
    opacity: 0.7;
}

.lso-no-results h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.lso-no-results p {
    margin: 0;
    color: #666;
}

/* Responsive Design for Different Layouts */
@media (max-width: 1024px) {
    .lso-results-triple {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .lso-overlay-content {
        width: 96% !important;
        margin: 2vh auto !important;
        max-height: 96vh !important;
        border-radius: 12px;
    }

    .lso-search-header {
        padding: 20px 24px;
    }

    .lso-search-container {
        padding: 0 16px;
    }

    .lso-search-input {
        padding: 14px 10px 14px 0;
        font-size: 16px;
    }

    .lso-results-container {
        padding: 16px 20px;
    }

    /* Mobile: All layouts become single column */
    .lso-results-double,
    .lso-results-triple {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lso-results-double .lso-result-item,
    .lso-results-triple .lso-result-item {
        padding: 16px;
    }

    .lso-results-double .lso-result-thumbnail,
    .lso-results-triple .lso-result-thumbnail {
        height: 140px;
    }

    /* Mobile floating button adjustments */
    .lso-floating-button {
        bottom: 16px !important;
        right: 16px !important;
        position: fixed !important;
        z-index: 999998 !important;
    }

    .lso-floating-bottom-left {
        left: 16px !important;
        bottom: 16px !important;
        right: auto !important;
        top: auto !important;
    }

    .lso-floating-top-right {
        top: 16px !important;
        right: 16px !important;
        bottom: auto !important;
        left: auto !important;
    }

    .lso-floating-top-left {
        top: 16px !important;
        left: 16px !important;
        bottom: auto !important;
        right: auto !important;
    }

    .lso-floating-middle-right {
        top: 50% !important;
        right: 16px !important;
        bottom: auto !important;
        left: auto !important;
        transform: translateY(-50%) !important;
    }

    .lso-floating-middle-left {
        top: 50% !important;
        left: 16px !important;
        bottom: auto !important;
        right: auto !important;
        transform: translateY(-50%) !important;
    }

    /* Smaller text for mobile */
    .lso-button-style-text .lso-button-text,
    .lso-button-style-icon_text .lso-button-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .lso-search-header {
        padding: 16px 20px;
    }

    .lso-search-container {
        padding: 0 14px;
    }

    .lso-search-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .lso-results-container {
        padding: 12px 16px;
    }

    /* Even smaller floating button on very small screens */
    .lso-floating-button {
        bottom: 12px !important;
        right: 12px !important;
    }

    .lso-floating-bottom-left {
        left: 12px !important;
        bottom: 12px !important;
    }

    .lso-floating-top-right {
        top: 12px !important;
        right: 12px !important;
    }

    .lso-floating-top-left {
        top: 12px !important;
        left: 12px !important;
    }

    .lso-floating-middle-right {
        right: 12px !important;
    }

    .lso-floating-middle-left {
        left: 12px !important;
    }

    /* Ensure minimum touch target */
    .lso-button-size-small {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Enhanced Animations */
.lso-floating-button.lso-hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.lso-floating-button.lso-visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* Pulsing animation with enhanced effect */
.lso-floating-button.lso-pulse {
    animation: lso-enhanced-pulse 2.5s infinite;
}

@keyframes lso-enhanced-pulse {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 115, 170, 0.5);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
        transform: scale(1);
    }
}

/* Staggered animation for results */
.lso-result-item {
    opacity: 0;
    animation: lso-fade-in-up 0.5s ease-out forwards;
}

@keyframes lso-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lso-result-item:nth-child(1) { animation-delay: 0.1s; }
.lso-result-item:nth-child(2) { animation-delay: 0.2s; }
.lso-result-item:nth-child(3) { animation-delay: 0.3s; }
.lso-result-item:nth-child(4) { animation-delay: 0.4s; }
.lso-result-item:nth-child(5) { animation-delay: 0.5s; }
.lso-result-item:nth-child(6) { animation-delay: 0.6s; }

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .lso-overlay,
    .lso-overlay-content,
    .lso-search-trigger,
    .lso-floating-button {
        transition: none;
    }

    .lso-loading::before {
        animation: none;
    }

    .lso-floating-button.lso-pulse,
    .lso-button-icon svg {
        animation: none;
    }

    .lso-result-item {
        animation: none;
        opacity: 1;
    }
}

/* Enhanced focus styles */
.lso-search-trigger:focus,
.lso-close-btn:focus,
.lso-floating-button:focus {
    outline: 3px solid #0073aa;
    outline-offset: 2px;
}

.lso-result-item:focus {
    outline: 3px solid #0073aa;
    outline-offset: -3px;
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .lso-overlay-content {
        background: #1a1a1a !important;
        color: #ffffff;
    }

    .lso-search-header {
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border-bottom-color: #404040;
    }

    .lso-search-container {
        background: #333;
        border-color: #555;
    }

    .lso-search-container:focus-within {
        border-color: #0073aa;
        box-shadow: 0 0 0 4px rgba(0, 115, 170, 0.25);
    }

    .lso-search-input {
        color: #fff;
    }

    .lso-search-input::placeholder {
        color: #aaa;
    }

    .lso-result-item {
        border-color: #333;
        background: #222 !important;
    }

    .lso-results-double .lso-result-item,
    .lso-results-triple .lso-result-item {
        background: #222 !important;
    }

    .lso-result-item:hover {
        background: linear-gradient(135deg, #2a2a2a 0%, #333 100%) !important;
    }

    .lso-result-title {
        color: #4db6e6;
    }

    .lso-result-item:hover .lso-result-title {
        color: #66c3f0;
    }

    .lso-result-excerpt {
        color: #ccc;
    }

    .lso-result-meta {
        color: #999;
    }

    .lso-result-type {
        background: linear-gradient(135deg, #444 0%, #555 100%);
        color: #ddd;
    }
}

/* High contrast mode enhancements */
@media (prefers-contrast: high) {
    .lso-search-trigger,
    .lso-floating-button {
        border: 3px solid currentColor;
    }

    .lso-overlay {
        background: rgba(0, 0, 0, 0.95) !important;
    }

    .lso-search-container {
        border-width: 4px;
    }

    .lso-result-item {
        border-width: 3px;
    }
}

/* CRITICAL: Prevent body scrolling when overlay is active */
.lso-no-scroll {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* Ensure floating button always stays on top */
#lso-floating-search {
    position: fixed !important;
    z-index: 999998 !important;
}

/* Ensure overlay always works and covers everything */
#lso-search-overlay {
    position: fixed !important;
    z-index: 2147483647 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Override any theme that might interfere */
.lso-overlay,
.lso-overlay * {
    box-sizing: border-box !important;
}

.lso-floating-button,
.lso-floating-button * {
    box-sizing: border-box !important;
}

/* Admin interface enhancements */
.lso-admin-content .notice {
    margin: 20px 0;
    border-left-width: 4px;
}

.lso-admin-content table.widefat {
    margin-top: 16px;
}

.lso-admin-content table.widefat th {
    font-weight: 600;
    background: #f8f9fa;
}

.lso-admin-content table.widefat code {
    background: #f1f1f1;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}
