/**
 * Mobizeno Public Comparison Stylesheet
 * Responsive Side-by-Side Spec Matrix, Floating Drawer & Live Search Modal
 */

:root {
    --mbz-primary: #1a73e8;
    --mbz-primary-hover: #1557b0;
    --mbz-primary-light: #e8f0fe;
    --mbz-secondary: #5f6368;
    --mbz-text: #202124;
    --mbz-text-muted: #5f6368;
    --mbz-border: #dadce0;
    --mbz-border-subtle: #edf2f7;
    --mbz-bg: #ffffff;
    --mbz-bg-alt: #f8f9fa;
    --mbz-success: #0d904f;
    --mbz-danger: #d93025;
    --mbz-diff-highlight: #fff9db;
    --mbz-diff-border: #ffe066;
    --mbz-radius: 8px;
    --mbz-radius-lg: 14px;
    --mbz-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --mbz-shadow-md: 0 4px 14px rgba(0,0,0,0.08);
    --mbz-shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

/* ==========================================================================
   1. "Add to Compare" Buttons
   ========================================================================== */
.mbz-btn-compare {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--mbz-radius);
    border: 1px solid var(--mbz-border);
    background: var(--mbz-bg);
    color: var(--mbz-text);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    text-decoration: none;
    line-height: 1.2;
}

.mbz-btn-compare:hover {
    border-color: var(--mbz-primary);
    color: var(--mbz-primary);
    background: var(--mbz-primary-light);
    transform: translateY(-1px);
}

.mbz-btn-compare-primary {
    background: var(--mbz-primary-light);
    border-color: #c2e7ff;
    color: var(--mbz-primary);
    padding: 10px 20px;
    font-size: 15px;
}

.mbz-btn-compare-primary:hover {
    background: var(--mbz-primary);
    color: #ffffff;
    border-color: var(--mbz-primary);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.25);
}

/* Button Active / In Comparison State */
.mbz-btn-compare.mbz-is-active {
    background: var(--mbz-primary);
    border-color: var(--mbz-primary);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(26, 115, 232, 0.3);
}

.mbz-btn-compare.mbz-is-active:hover {
    background: var(--mbz-danger);
    border-color: var(--mbz-danger);
    color: #ffffff;
}

.mbz-btn-compare-card {
    width: 100%;
    margin-top: 10px;
    padding: 6px 12px;
    font-size: 12px;
}

.mbz-device-actions-bar {
    margin: 12px 0 18px 0;
}

/* ==========================================================================
   2. Floating Bottom Drawer
   ========================================================================== */
.mbz-compare-drawer {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 99999;
    max-width: 90%;
    width: 820px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--mbz-border);
    border-radius: 40px;
    box-shadow: var(--mbz-shadow-lg);
    padding: 10px 18px;
    animation: mbzDrawerSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mbzDrawerSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mbz-drawer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mbz-drawer-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mbz-drawer-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--mbz-text);
}

.mbz-drawer-title .dashicons {
    color: var(--mbz-primary);
}

.mbz-drawer-count {
    background: var(--mbz-primary-light);
    color: var(--mbz-primary);
    font-weight: 700;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
}

.mbz-drawer-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 440px;
}

.mbz-drawer-chips::-webkit-scrollbar {
    display: none;
}

.mbz-drawer-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--mbz-bg-alt);
    border: 1px solid var(--mbz-border);
    border-radius: 20px;
    padding: 4px 8px 4px 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mbz-text);
    white-space: nowrap;
    animation: mbzChipPop 0.2s ease-out;
}

@keyframes mbzChipPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.mbz-chip-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid var(--mbz-border);
}

.mbz-chip-remove {
    background: none;
    border: none;
    color: #9aa0a6;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0 2px;
}

.mbz-chip-remove:hover {
    color: var(--mbz-danger);
}

.mbz-drawer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mbz-drawer-clear {
    background: none;
    border: none;
    color: var(--mbz-text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
}

.mbz-drawer-clear:hover {
    color: var(--mbz-danger);
    background: #fce8e6;
}

.mbz-drawer-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mbz-primary);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.35);
}

.mbz-drawer-cta:hover {
    background: var(--mbz-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.45);
}

/* Toast Notifications */
.mbz-compare-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #202124;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--mbz-shadow-lg);
    z-index: 100000;
    animation: mbzToastFade 0.25s ease-out;
}

@keyframes mbzToastFade {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ==========================================================================
   3. Comparison Page Layout
   ========================================================================== */
.mbz-full-width-content,
body.mbz-compare-page-active #primary,
body.mbz-compare-page-active .site-content,
body.mbz-compare-page-active .inside-article {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    float: none !important;
}

body.mbz-compare-page-active #right-sidebar,
body.mbz-compare-page-active #left-sidebar,
body.mbz-compare-page-active .sidebar {
    display: none !important;
}

.mbz-compare-page-wrapper {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--mbz-text);
    width: 100%;
    box-sizing: border-box;
}

.mbz-compare-top-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--mbz-border);
    border-radius: var(--mbz-radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: var(--mbz-shadow-sm);
}

.mbz-compare-heading {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mbz-text);
}

.mbz-compare-heading .dashicons {
    color: var(--mbz-primary);
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.mbz-compare-subtitle {
    margin: 0;
    color: var(--mbz-text-muted);
    font-size: 14px;
}

.mbz-compare-top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mbz-btn-open-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mbz-primary-light);
    color: var(--mbz-primary);
    border: 1px solid #c2e7ff;
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mbz-btn-open-search:hover {
    background: var(--mbz-primary);
    color: #ffffff;
}

.mbz-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mbz-bg);
    border: 1px solid var(--mbz-border);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mbz-text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mbz-btn-secondary:hover {
    border-color: #9aa0a6;
    color: var(--mbz-text);
    background: var(--mbz-bg-alt);
}

/* ==========================================================================
   4. Comparison Table Matrix
   ========================================================================== */
.mbz-matrix-scroll-wrapper {
    overflow-x: auto !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--mbz-border);
    border-radius: var(--mbz-radius-lg);
    background: #ffffff;
    box-shadow: var(--mbz-shadow-sm);
    box-sizing: border-box !important;
}

.mbz-compare-table {
    width: 100% !important;
    min-width: 960px !important;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

/* Header Columns */
.mbz-col-feature-label {
    width: 220px !important;
    min-width: 200px !important;
    max-width: 240px !important;
    background: var(--mbz-bg-alt);
    padding: 20px;
    border-right: 1px solid var(--mbz-border);
    border-bottom: 2px solid var(--mbz-border);
    vertical-align: top;
    text-align: left;
    box-sizing: border-box !important;
}

.mbz-matrix-tools-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mbz-tools-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mbz-text);
}

.mbz-diff-toggle-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mbz-primary-hover);
    cursor: pointer;
    user-select: none;
}

.mbz-col-device-slot {
    min-width: 190px !important;
    padding: 20px 16px;
    border-right: 1px solid var(--mbz-border);
    border-bottom: 2px solid var(--mbz-border);
    vertical-align: top;
    text-align: center;
    background: #ffffff;
    box-sizing: border-box !important;
}

.mbz-col-device-slot:last-child {
    border-right: none;
}

/* Slot Card (Filled) */
.mbz-slot-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mbz-slot-remove-btn {
    position: absolute;
    top: -10px;
    right: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--mbz-border);
    background: #ffffff;
    color: var(--mbz-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease;
}

.mbz-slot-remove-btn:hover {
    background: var(--mbz-danger);
    border-color: var(--mbz-danger);
    color: #ffffff;
}

.mbz-slot-img {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mbz-slot-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.mbz-slot-brand {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--mbz-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.mbz-slot-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.mbz-slot-title a {
    color: var(--mbz-text);
    text-decoration: none;
}

.mbz-slot-title a:hover {
    color: var(--mbz-primary);
}

.mbz-slot-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--mbz-success);
    margin-bottom: 12px;
}

.mbz-slot-swap-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 1px solid var(--mbz-border);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--mbz-text-muted);
    cursor: pointer;
}

.mbz-slot-swap-btn:hover {
    border-color: var(--mbz-primary);
    color: var(--mbz-primary);
    background: var(--mbz-primary-light);
}

/* Slot Card (Empty) */
.mbz-slot-empty-card {
    border: 2px dashed var(--mbz-border);
    border-radius: var(--mbz-radius);
    padding: 30px 16px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--mbz-bg-alt);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mbz-slot-empty-card:hover {
    border-color: var(--mbz-primary);
    background: var(--mbz-primary-light);
}

.mbz-slot-empty-icon {
    font-size: 32px;
    color: #9aa0a6;
    margin-bottom: 8px;
}

.mbz-slot-empty-card:hover .mbz-slot-empty-icon {
    color: var(--mbz-primary);
}

.mbz-slot-empty-card h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
}

.mbz-slot-empty-card p {
    margin: 0 0 14px 0;
    font-size: 12px;
    color: var(--mbz-text-muted);
}

.mbz-btn-add-slot {
    background: #ffffff;
    border: 1px solid var(--mbz-border);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--mbz-primary);
    cursor: pointer;
}

.mbz-slot-empty-card:hover .mbz-btn-add-slot {
    background: var(--mbz-primary);
    color: #ffffff;
    border-color: var(--mbz-primary);
}

/* Category Header Rows (Left Column Category Pill Design) */
.mbz-row-header-category td {
    background: #f8fafd;
    border-top: 1px solid var(--mbz-border);
    border-bottom: 1px solid var(--mbz-border);
    padding: 10px 16px;
    height: 42px;
    box-sizing: border-box;
}

.mbz-row-header-category td.mbz-cat-heading {
    background: #e8f0fe !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a73e8;
    border-right: 1px solid #d2e3fc;
    vertical-align: middle;
}

.mbz-cat-title-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mbz-cat-title-inner .dashicons {
    color: var(--mbz-primary);
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.mbz-cat-spacer {
    background: #f8fafd;
    border-right: 1px solid #edf2f7;
}

.mbz-cat-spacer:last-child {
    border-right: none;
}

/* Specification Rows & Cells */
.mbz-spec-row {
    transition: background 0.15s ease;
}

.mbz-spec-row:hover {
    background: #fafafa;
}

.mbz-feature-label {
    background: #fafbfc;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mbz-text-muted);
    border-right: 1px solid var(--mbz-border);
    border-bottom: 1px solid #f1f3f4;
    vertical-align: top;
    width: 220px !important;
    min-width: 200px !important;
    max-width: 240px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
}

.mbz-spec-cell {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--mbz-text);
    border-right: 1px solid var(--mbz-border);
    border-bottom: 1px solid #f1f3f4;
    vertical-align: top;
    text-align: left;
    line-height: 1.5;
    min-width: 190px !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
}

.mbz-spec-cell:last-child {
    border-right: none;
}

.mbz-empty-dash {
    color: #dadce0;
}

/* Differences Highlight Mode */
.mbz-highlight-active .mbz-spec-row.mbz-row-has-diff {
    background: var(--mbz-diff-highlight) !important;
}

.mbz-highlight-active .mbz-spec-row.mbz-row-has-diff .mbz-feature-label {
    font-weight: 700;
    color: #8f6b00;
    border-left: 3px solid var(--mbz-diff-border);
}

/* ==========================================================================
   5. Search Modal / Autocomplete Dialog
   ========================================================================== */
.mbz-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbz-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 33, 36, 0.6);
    backdrop-filter: blur(4px);
}

.mbz-modal-content {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: var(--mbz-radius-lg);
    box-shadow: var(--mbz-shadow-lg);
    overflow: hidden;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: mbzModalPop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mbzModalPop {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.mbz-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--mbz-border);
}

.mbz-modal-heading {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mbz-text);
}

.mbz-modal-heading .dashicons {
    color: var(--mbz-primary);
}

.mbz-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: var(--mbz-text-muted);
    cursor: pointer;
    padding: 0 4px;
}

.mbz-modal-close:hover {
    color: var(--mbz-danger);
}

.mbz-modal-body {
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mbz-modal-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.mbz-search-input-icon {
    position: absolute;
    left: 14px;
    color: #9aa0a6;
    font-size: 20px;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

input[type="text"].mbz-search-input-field {
    width: 100%;
    padding: 12px 40px 12px 42px;
    font-size: 15px;
    border: 2px solid var(--mbz-border);
    border-radius: 28px;
    outline: none;
    transition: border-color 0.2s ease;
}

.mbz-search-input-field:focus {
    border-color: var(--mbz-primary);
    box-shadow: 0 0 0 4px var(--mbz-primary-light);
}

.mbz-search-clear-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    font-size: 18px;
    color: #9aa0a6;
    cursor: pointer;
}

/* Modal Search Results */
.mbz-search-results {
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mbz-search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--mbz-border-subtle);
    border-radius: var(--mbz-radius);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.15s ease;
}

.mbz-search-item:hover {
    border-color: var(--mbz-primary);
    background: var(--mbz-primary-light);
    transform: translateX(4px);
}

.mbz-search-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mbz-search-item-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: var(--mbz-bg-alt);
    border-radius: 4px;
    border: 1px solid var(--mbz-border);
    padding: 2px;
}

.mbz-search-item-info {
    display: flex;
    flex-direction: column;
}

.mbz-search-item-brand {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--mbz-primary);
    font-weight: 700;
}

.mbz-search-item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--mbz-text);
}

.mbz-search-item-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--mbz-success);
}

.mbz-search-item-btn {
    background: var(--mbz-primary-light);
    border: 1px solid #c2e7ff;
    color: var(--mbz-primary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    pointer-events: none;
}

.mbz-search-item:hover .mbz-search-item-btn {
    background: var(--mbz-primary);
    color: #ffffff;
}

.mbz-search-item.mbz-item-already-added {
    opacity: 0.6;
    background: #f1f3f4;
    cursor: not-allowed;
}

.mbz-search-item.mbz-item-already-added:hover {
    transform: none;
    border-color: var(--mbz-border-subtle);
}

.mbz-search-placeholder-tip {
    text-align: center;
    padding: 40px 20px;
    color: var(--mbz-text-muted);
}

.mbz-search-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: var(--mbz-text-muted);
    font-size: 13px;
}

.mbz-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--mbz-border);
    border-top-color: var(--mbz-primary);
    border-radius: 50%;
    animation: mbzSpin 0.6s linear infinite;
}

@keyframes mbzSpin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   6. Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
    .mbz-compare-top-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .mbz-compare-top-actions {
        width: 100%;
        justify-content: space-between;
    }

    .mbz-top-search-wrapper {
        width: 100%;
    }

    .mbz-btn-open-search {
        width: 100%;
        justify-content: center;
    }

    .mbz-compare-drawer {
        width: 94%;
        bottom: 12px;
        padding: 8px 14px;
    }

    .mbz-drawer-chips {
        max-width: 160px;
    }

    .mbz-col-feature-label {
        width: 140px;
        min-width: 130px;
        padding: 12px 10px;
    }

    .mbz-col-device-slot {
        min-width: 160px;
        padding: 12px 8px;
    }

    .mbz-slot-img {
        height: 100px;
    }

    .mbz-slot-title {
        font-size: 13px;
    }
}
