:root {
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary: #2563eb;
    --border: #e2e8f0;
    --active-up: #22c55e;
    --active-down: #ef4444;
}

.rating-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.session-info h3 {
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.session-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.rating-prompt {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 16px;
}

.thumb-container {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.thumb-btn {
    background: none;
    border: 2px solid var(--border);
    border: 0;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.thumb-btn svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 2;
    transition: all 0.2s ease;
}

/* Hover States */
.thumb-btn.up:hover {
    border-color: var(--active-up);
    background-color: #f0fdf4;
}
.thumb-btn.up:hover svg {
    stroke: var(--active-up);
}

.thumb-btn.down:hover {
    border-color: var(--active-down);
    background-color: #fef2f2;
}
.thumb-btn.down:hover svg {
    stroke: var(--active-down);
}

/* Active/Selected States */
.thumb-btn.up.active {
    background-color: var(--active-up);
    border-color: var(--active-up);
}
.thumb-btn.up.active svg {
    /*stroke: #ffffff;
    fill: #ffffff;*/
}

.thumb-btn.down.active {
    background-color: var(--active-down);
    border-color: var(--active-down);
}
.thumb-btn.down.active svg {
/*    stroke: #ffffff;*/
/*    fill: #ffffff;*/
}

.thumb-btn.down svg {
    transform: rotate(180deg);
}
.feedback {
    display: none;
    align-items: center;
    border: red 1px solid;
    padding: 5px 20px;
    width: max-content;
    margin: 20px 0 2px;
    border-radius: 0px;

}
.feedback.active { display: flex; }
.feedback p { font-weight: 300 !important; margin: 0 10px 0; }
.icon + .icon {
    position: relative;
    margin-left: -70%;
/*    transform: rotate(-30deg);*/
}