.selection-summary {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.3;
    padding: 10px;
}

.selection-summary h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 14px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 3px;
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0;
    padding: 3px 0;
    border-bottom: 1px solid #ecf0f1;
}

/* --- NEW CSS RULES ARE NOW CORRECTLY PLACED HERE --- */
.config-item-group {
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
    padding: 3px 0;
    border-bottom: 1px solid #ecf0f1;
    align-items: flex-start;
}

.config-value-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.config-value-item {
    font-weight: 500;
    color: #2c3e50;
    font-size: 12px;
    margin-bottom: 3px;
}
.config-value-item:last-child {
    margin-bottom: 0;
}
/* --- END OF NEW CSS RULES --- */


.config-label {
    font-weight: 600;
    color: #34495e;
    font-size: 12px;
}

.config-value {
    font-weight: 500;
    color: #2c3e50;
    font-size: 12px;
}

.config-note {
    background: #e8f5e8;
    border: 1px solid #27ae60;
    border-radius: 4px;
    padding: 4px 6px;
    margin: 3px 0;
    display: flex;
    align-items: center;
    font-size: 10px;
}

.note-icon {
    margin-right: 4px;
}

.note-text {
    color: #27ae60;
    font-weight: 500;
}

.complete-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
    margin: 6px 0;
}

.updating {
    opacity: 0.7;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

.information-container {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-widget {
    background-color: #f0f4f8;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #dde3ea;
}

.price-widget h2 {
    margin-top: 0;
    font-size: 1rem;
    color: #5c6a7e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-widget p {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 5px 0 0 0;
}