@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #E0EBF1;
    /* Soft Blue Background */
    margin: 0;
    padding: 0;
    color: #676867;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: #0073AA;
}

/* Header */
.header {
    background-color: white;
    /* Changed to white as requested */
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-start;
    /* Align items to start (left) */
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    gap: 2rem;
    /* Add space between logo and text */
}

.header-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #0073AA;
}

.logo {
    height: 60px;
    width: auto;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Cards */
.card {
    background-color: white;
    border-radius: 12px;
    /* Softer corners */
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Tabs */
.custom-tabs {
    margin-bottom: 1rem;
    border-bottom: none !important;
}

.custom-tab {
    border: none !important;
    background-color: transparent !important;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #676867 !important;
    padding: 12px !important;
    cursor: pointer;
}

.custom-tab--selected {
    color: #0073AA !important;
    font-weight: bold;
    border-bottom: 3px solid #0073AA !important;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: #676867;
    font-size: 0.9rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Graph Overrides */
.js-plotly-plot .plotly .modebar {
    display: none !important;
}

/* Logout Button in Header */
.logout-btn {
    background-color: #0073AA;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
    font-size: 1rem;
}

.logout-btn:hover {
    background-color: #005a87;
    color: white;
    text-decoration: none;
}

.logout-btn i {
    font-size: 1.1rem;
}