/* style.css */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #007bff;
    color: white;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link {
    color: #343a40;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link.active {
    color: #007bff;
    font-weight: bold;
}

.navbar {
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1200px;
}

.container.d-flex.justify-content-center {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.col-xl-10 {
    max-width: 1140px;
}

.card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.card-body {
    padding: 1.25rem;
    background-color: #ffffff;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #212529;
    text-align: center;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
}

.footer .text-muted,
.footer .text-muted a {
    color: #6c757d;
}

.google-visualization-table {
    font-size: 0.9rem;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    table-layout: fixed;
    word-wrap: break-word;
    background-color: #ffffff;
}

.google-visualization-table th {
    background-color: #e9ecef;
    color: #212529;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    text-align: left;
}

.google-visualization-table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    overflow-wrap: break-word;
    word-break: break-word;
    background-color: #ffffff;
    color: #343a40;
}

.google-visualization-table tr:nth-child(odd) td {
    background-color: #f8f9fa;
}

.google-visualization-table tr:hover td {
    background-color: #f0f0f0;
}

.alert-info {
    background-color: #cff4fc;
    border-color: #b6e6fa;
    color: #084298;
}

.navbar-nav .d-flex.align-items-center span {
    color: #343a40;
}