/* Sidebar Details */
.sidebar-details .detail-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 1rem 0;
    border-bottom: 1px solid var(--celtic-blue-a10);
}

.sidebar-details .detail-row:last-child {
    border-bottom: none;
}

.sidebar-details .detail-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--black-a60);
}

.sidebar-details .detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--oxford-blue);
}

.sidebar-details .detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sidebar-details .detail-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bleu-de-france);
    background-color: rgba(29, 136, 237, 0.08);
    border: 1px solid rgba(29, 136, 237, 0.2);
    border-radius: 20px;
    padding: 4px 10px;
}

/* Sidebar Key Results */
.sidebar-key-results .key-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--celtic-blue-a10);
}

.sidebar-key-results .key-result-row:last-child {
    border-bottom: none;
}

.sidebar-key-results .key-result-label {
    font-size: 0.85rem;
}

.sidebar-key-results .key-result-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--oxford-blue);
    white-space: nowrap;
}

.sidebar-key-results .suggestion-title,
.sidebar-details .suggestion-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

/* Gradient Sidebar */
.gradient-sidebar {
    background: linear-gradient(160deg,
        #ffffff 0%,
        #f0f7ff 30%,
        #e8f5f0 65%,
        #f5f0ff 100%
    );
    border: 1px solid rgba(148, 196, 242, 0.4);
    border-top: 3px solid #60a5fa;
    box-shadow:
        0 1px 3px rgba(96, 165, 250, 0.08),
        0 8px 24px rgba(96, 165, 250, 0.1);
    position: relative;
    overflow: hidden;
}

.gradient-sidebar::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.gradient-sidebar::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.gradient-sidebar .suggestion-title {
    color: var(--oxford-blue);
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.gradient-sidebar .detail-label {
    color: var(--black-a60);
    position: relative;
    z-index: 1;
}

.gradient-sidebar .detail-value {
    color: var(--oxford-blue);
    position: relative;
    z-index: 1;
}

.gradient-sidebar .detail-row {
    border-bottom-color: rgba(96, 165, 250, 0.12);
    position: relative;
    z-index: 1;
}

.gradient-sidebar .detail-row:last-child {
    border-bottom: none;
}

.gradient-sidebar .key-result-label {
    color: var(--black-a70);
    position: relative;
    z-index: 1;
}

.gradient-sidebar .key-result-value {
    color: #059669;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.gradient-sidebar .key-result-row {
    border-bottom-color: rgba(96, 165, 250, 0.12);
    position: relative;
    z-index: 1;
}

.gradient-sidebar .key-result-row:last-child {
    border-bottom: none;
}

.gradient-sidebar .detail-tags .detail-tag {
    background-color: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.25);
    color: var(--polynesian-blue);
    position: relative;
    z-index: 1;
}

.gradient-sidebar .c-link:not(:hover):not(.current),
.gradient-sidebar .c-link:not(:hover):not(.current) {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
    position: relative;
    z-index: 1;
}