/* styles.css */

/* Color variables */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #1abc9c;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #9cc3d5;
    --secondary: #0063b2;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --font-family-sans-serif: "SB Body", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: var(--white);
  }

.card {
    background-color: var(--primary);
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.col {
    padding: 10px;
    width: 4;
}

.container {
    max-width: 60%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-right: auto;
    margin-left: auto;
  }

.graph-container {
    width: 100%;
    height: 100%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    max-width: 1200px;
}

.header {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nav-tabs {
  display: flex;                /* ensure flex container */
  flex-wrap: nowrap !important; /* no wrapping onto new lines */
}

.nav-tabs .nav-item {
    flex: 0 0 auto;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: var(--secondary);
    color: white;
}

.nav-tabs .nav-link {
    color: var(--secondary);
}

.nav-tabs .nav-link:hover {
    background-color: var(--primary);
    color: var(--white);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}

.tab-content,

.tab-pane {
    max-width: 100% !important;
}