
.progress-bar-bg {
    width: 100%;
    height: 30px;
    background-color: var(--unvisited);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #94a3b8;
    margin-bottom: 15px;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary);
    width: 0%;
    transition: width 0.3s ease;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.stat-box {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

.items-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.item-card {
    border: 3px solid #94a3b8;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    background-color: white;
    min-width: 90px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.item-card div { margin: 5px 0; }
.item-name { font-weight: bold; font-size: 1.1em; border-bottom: 1px solid #ccc; padding-bottom: 5px; }

.item-card.active { border-color: var(--current); background-color: #fef08a; transform: scale(1.05); }
.item-card.included { border-color: var(--visited); background-color: #dcfce7; }
.item-card.excluded { border-color: #cbd5e1; background-color: #f1f5f9; opacity: 0.5; text-decoration: line-through; }

.best-selection-container {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.best-badge {
    background-color: #2563eb;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: bold;
}