.settings-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 700px;
    max-width: 90vw;
    background: var(--rz-base-background-color);
    border-left: 1px solid var(--rz-border-color);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.settings-panel.expanded {
    transform: translateX(0);
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
}

.settings-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid var(--rz-border-color);
    background: linear-gradient(135deg, var(--rz-primary-lighter) 0%, transparent 100%);
}

.header-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.header-icon {
    font-size: 2rem;
    color: var(--rz-primary);
    background: var(--rz-base-background-color);
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.close-button {
    margin-top: -0.5rem;
    margin-right: -0.5rem;
}

.settings-panel-content {
    padding: 1rem 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.highlight-card {
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HIGHLIGHT CARDS - Estilo Reporbia
   ═══════════════════════════════════════════════════════════════════════════ */
.highlight-card {
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.highlight-card:hover {
    background-color: var(--rz-menu-item-hover-background-color);
    transform: scale(1.02);
}

/* Links estilo Reporbia */
.link-fake {
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.link-fake:hover {
    opacity: 0.8;
    text-decoration: underline;
}
