/* ClaudeTrader custom styles for Beer CSS */

/* Navigation active state */
nav a.active {
    font-weight: bold;
    opacity: 1;
}
nav a.brand {
    font-weight: bold;
}

/* Pre-formatted text (prompts, reasoning) */
.prompt-text {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.8rem;
    line-height: 1.4;
    max-height: 400px;
    overflow-y: auto;
    font-family: 'Roboto Mono', monospace;
}

.response-text {
    border-left: 3px solid var(--primary);
}

/* Prompt log entries */
.prompt-entry {
    margin-bottom: 1rem;
}

/* Color helpers for P&L */
.green-text { color: #4caf50 !important; }
.red-text { color: #f44336 !important; }
.amber-text { color: #ff9800 !important; }

/* Chip colors */
.chip.green { background: #2e7d32; color: white; }
.chip.red { background: #c62828; color: white; }
.chip.blue { background: #1565c0; color: white; }
.chip.purple { background: #6a1b9a; color: white; }
.chip.amber { background: #f57f17; color: white; }

/* Scroll container */
.scroll {
    overflow-x: auto;
}

/* Material icon sizing */
i.small {
    font-size: 12px;
}

/* Footer */
footer {
    margin-top: 2rem;
    opacity: 0.6;
}

/* Consistent card heights in grids */
.dashboard-card {
    min-height: 5rem;
    display: flex;
    align-items: stretch;
}
.dashboard-card > .padding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

/* Details styling */
details summary {
    cursor: pointer;
}
