.karooooo-summary {
    font-family: Arial, sans-serif;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 15px;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: #fff;
}

.karooooo-summary h3 {
    margin-top: 0;
    color: #2a52be; /* Karooooo brand blue */
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.karooooo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.karooooo-symbol {
    font-weight: bold;
    font-size: 1.2em;
    color: #333;
}

.karooooo-price {
    font-size: 1.4em;
    font-weight: bold;
    color: #2a52be;
}

.karooooo-change {
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
}

.karooooo-change.positive {
    background-color: #e6f7e6;
    color: #0a0;
}

.karooooo-change.negative {
    background-color: #fee;
    color: #d00;
}

.karooooo-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
}

.karooooo-detail-row:last-child {
    border-bottom: none;
}

.karooooo-footer {
    margin-top: 10px;
    font-size: 0.8em;
    color: #666;
    text-align: right;
}

.karooooo-error {
    color: #d00;
    padding: 10px;
    border: 1px solid #fcc;
    background-color: #fee;
}