
body {
    font-family: sans-serif;
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 0;
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.controls {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.train-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.train-row {
    background: white;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.train-line {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.train-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.train-time {
    font-size: 0.9rem;
    color: #555;
}

.svg-wrapper {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    justify-content: start;
}

.svg-container {
    width: 100%;
    max-width: 300px;
    flex: 1 1 auto;
}

.svg-container svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 600px) {
    .svg-container svg {
    transform: scale(0.8);
    transform-origin: left top;
    }
}
