.result {
    margin-top: 25px;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    display: none;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    font-weight: 600;
    color: var(--primary);
}

.error {
    color: #dc3545;
    background: #f8d7da;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}