body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: rgb(0, 58, 112);
    color: #ffffff;
}

a {
    color: white;
    text-decoration: underline;
}

a:hover {
    color: #ff6b35;
}

.card {
    /* background-color: #2d2d2d; */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #ff6b35;
    margin-bottom: 2rem;
}

.card-header {
    background-color: #ff6b35;
    color: white;
    font-weight: bold;
}

.card-body {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.stream-video {
    max-width: 100%;
    height: auto;
    border: 2px solid #ff6b35;
    border-radius: 5px;
    background-color: #000;
}

.stream-container {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-loading {
    text-align: center;
    color: white;
}

.stream-error {
    text-align: center;
    color: #ff6b35;
}

.spinner {
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chart-iframe {
    border: 1px solid #ff6b35;
    border-radius: 5px;
    width: 100%;
    height: 260px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.stream-container {
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.stream-video {
    max-width: 100%;
    height: auto;
    border: 2px solid #ff6b35;
    border-radius: 5px;
    background-color: #000;
}

.charts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.chart-iframe {
    border: 1px solid #ff6b35;
    border-radius: 5px;
    flex: 1;
    min-width: 280px;
    max-width: 460px;
    width: 100%;
}

@media (max-width: 1024px) {
    .charts-container {
        flex-direction: column;
        align-items: center;
    }
}