body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.navbar {
    height: 48px;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    max-width: 100%;
    padding: 0;
}

.navbar-brand {
    justify-self: center;
    transform: translateX(50%);
}

.nav-link {
    justify-self: center;
    transform: translateX(-50%);
}

.navbar-brand,
.nav-link {
    font-size: 16px;
    color: #0d6efd;
    text-decoration: none;
    padding: 8px 0;
    margin: 0;
    line-height: 32px;
    display: flex;
    align-items: center;
}

.navbar-brand:hover,
.nav-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.content-padding {
    padding: 20px;
}

.container {
    max-width: 1700px;
    margin: 0 auto;
}

.charts-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.chart-box {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px;
}

.chart-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.full-width {
    width: 100%;
}

#trend-chart {
    min-height: 600px;
}

#debug-info {
    margin-top: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    white-space: pre-wrap;
}

.chart {
    width: 100%;
    height: 400px;
    background-color: white;
}