.me-d0051d54-wrapper {
    display: flex;
    gap: 40px;
    font-family: var(--e-global-typography-text-font-family, sans-serif);
    color: #111;
}

/* Sidebar */
.me-d0051d54-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.me-d0051d54-search {
    position: relative;
    margin-bottom: 24px;
}

.me-d0051d54-search svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.me-d0051d54-search-input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.me-d0051d54-search-input:focus {
    border-color: #0073e6;
}

.me-d0051d54-filter-group {
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.me-d0051d54-filter-group:last-of-type {
    border-bottom: none;
}

.me-d0051d54-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-bottom: 12px;
}

.me-d0051d54-filter-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.me-d0051d54-filter-header svg {
    transition: transform 0.3s;
}

.me-d0051d54-filter-group.collapsed .me-d0051d54-filter-header svg {
    transform: rotate(-180deg);
}

.me-d0051d54-filter-body {
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.me-d0051d54-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.me-d0051d54-checkbox input {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.me-d0051d54-reset-btn {
    width: 100%;
    padding: 12px;
    background: #e6f0fa;
    color: #0073e6;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.2s;
}

.me-d0051d54-reset-btn:hover {
    background: #d4e6f8;
}

/* Main Content */
.me-d0051d54-main {
    flex-grow: 1;
    min-width: 0;
}

.me-d0051d54-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
    gap: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.me-d0051d54-units {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.me-d0051d54-units-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.me-d0051d54-units-toggle button {
    border: none;
    background: none;
    padding: 6px 16px;
    font-size: 13px;
    cursor: pointer;
    color: #666;
}

.me-d0051d54-units-toggle button.active {
    background: #555;
    color: #fff;
}

.me-d0051d54-expand-all {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
}

/* List & Cards */
.me-d0051d54-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.me-d0051d54-card {
    border-bottom: 1px solid #eee;
    padding: 24px 0;
}

.me-d0051d54-card-header {
    display: flex;
    gap: 24px;
}

.me-d0051d54-card-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f8f9fa;
}

.me-d0051d54-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.me-d0051d54-card-title-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.me-d0051d54-card-title-area h3 {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 600;
}

.me-d0051d54-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.me-d0051d54-card-meta .label {
    color: #666;
}

.me-d0051d54-card-meta .value {
    font-weight: 500;
}

.me-d0051d54-card-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    min-width: 160px;
}

.me-d0051d54-link {
    background: none;
    border: none;
    padding: 0;
    color: #0073e6;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
}

.me-d0051d54-link:hover {
    text-decoration: underline;
}

.me-d0051d54-toggle-btn svg {
    transition: transform 0.3s;
}

/* Expanded Details */
.me-d0051d54-card-details {
    padding-top: 24px;
    margin-top: 24px;
}

.me-d0051d54-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.me-d0051d54-details-grid h4 {
    margin: 0 0 16px 0;
    font-size: 15px;
    font-weight: 600;
}

.me-d0051d54-col-desc p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 24px;
}

.me-d0051d54-resolution .label {
    color: #666;
    margin-bottom: 4px;
}

.me-d0051d54-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.me-d0051d54-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.me-d0051d54-table td:last-child {
    text-align: right;
}

.me-d0051d54-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.me-d0051d54-tag {
    background: #f8f9fa;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
}

.me-d0051d54-no-results {
    padding: 40px;
    text-align: center;
    color: #666;
}

@media (max-width: 900px) {
    .me-d0051d54-wrapper {
        flex-direction: column;
    }
    .me-d0051d54-sidebar {
        width: 100%;
    }
    .me-d0051d54-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .me-d0051d54-card-header {
        flex-direction: column;
    }
    .me-d0051d54-card-actions {
        align-items: flex-start;
    }
}