body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 20px;
}
h1 {
    color: #ffcc00;
    text-align: center;
}
.breadcrumbs {
    font-size: 1.2em;
    margin-bottom: 10px;
    padding: 8px 15px;
    background: #121212;
    border-radius: 5px;
    display: inline-block;
}

.breadcrumbs a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .current {
    font-weight: bold;
    color: #cccccc;
    background: #232323;
}

ul {
    list-style: none;
    padding: 0;
}
li {
    padding: 10px;
    margin: 5px;
    background-color: #333;
    border-radius: 5px;
    transition: background 0.3s;
}
li:hover {
    background-color: #444;
}
.clickable-list-item {
    cursor: pointer;
}
a {
    text-decoration: none;
    color: #ffcc00;
    font-weight: bold;
}
a:hover {
    color: #ffdd55;
}
details {
    background: #222;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
    cursor: pointer;
}
summary {
    font-weight: bold;
    color: #ffcc00;
}
.content {
    margin-top: 160px;
}

.charts-layout {
    display: flex;
    justify-content: center; /* Centers both charts horizontally */
    align-items: flex-start; /* Aligns them at the top */
    gap: 2px; /* Adds spacing between the two charts */
    flex-wrap: wrap; /* Allows charts to wrap on smaller screens */
}

.charts-container {
    display: flex;
    justify-content: center; /* Centers both charts horizontally */
    align-items: flex-start; /* Aligns them at the top */
    gap: 20px; /* Adds spacing between the two charts */
    margin-top: 20px;
    width: 800px; 
    flex-wrap: wrap; /* Allows charts to wrap on smaller screens */
}

.snippet-box {
    flex: 1; /* Allows both charts to take equal space */
    height: 300px; 
    width: 400px; /* Ensures the charts don’t shrink too much */
    text-align: center;
    vertical-align: middle; 
}

.snippet-box canvas {
    width: 100%;
    vertical-align: middle;
}

.chart-box {
    flex: 1; /* Allows both charts to take equal space */
    height: 400px; 
    width: 400px; /* Ensures the charts don’t shrink too much */
    text-align: center;
    vertical-align: middle; 
}

.chart-box canvas {
    width: 100%;
    vertical-align: middle;
}
/* 🎨 Button Styling */
.playback-controls {
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 10px;
    margin-top: 5px;
    height: 75px;
}

.playback-controls button {
    background-color: #007BFF; /* Bootstrap blue */
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}

.playback-controls button:hover {
    background-color: #0056b3; /* Darker blue */
    transform: scale(1.05);
}

.playback-controls button:active {
    transform: scale(0.95);
}

/* 🟢 Play Button */
#playPauseButton {
    background-color: #28a745; /* Green */
}

#playPauseButton:hover {
    background-color: #218838;
}

/* ⏭️ Frame Navigation */
#nextFrameButton,
#prevFrameButton {
    background-color: #ffc107; /* Yellow */
    color: black;
}

#nextFrameButton:hover,
#prevFrameButton:hover {
    background-color: #e0a800;
}

/* ⏸️ Pause State */
.is-paused {
    background-color: #dc3545 !important; /* Red */
}

.is-paused:hover {
    background-color: #c82333 !important;
}

.parameter-container {
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background: #555555;
    width: 300px;
    text-align: center;
    margin: 20px auto;
}

.parameter-container h3 {
    margin-top: 0;
    font-size: 8px;
}

.parameter-container label {
    display: block;
    margin: 8px 0 4px;
    font-weight: bold;
}

.parameter-container input {
    width: 100%;
    padding: 5px;
    font-size: 1rem;
    text-align: center;
}

.parameter-container button {
    margin-top: 10px;
    padding: 10px;
    font-size: 1rem;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
}

.parameter-container button:hover {
    background: #0056b3;
}

.pending-button {
    background: #ff2211 !important;
}

.complete-button {
    background: #116600 !important;
}

