/* Custom styles for the analytics web app */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Custom navbar background color */
.navbar {
    background-color: #5867dd !important;
}

.navbar-brand {
    font-weight: 600;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.table th {
    font-weight: 600;
}

.badge {
    font-size: 0.75em;
}

.btn {
    border-radius: 0.375rem;
}

/* Custom button color */
.btn-primary {
    background-color: #5867dd !important;
    border-color: #5867dd !important;
}

.btn-primary:hover {
    background-color: #4a56c9 !important;
    border-color: #4a56c9 !important;
}

.btn-primary:focus,
.btn-primary:active {
    background-color: #4a56c9 !important;
    border-color: #4a56c9 !important;
    box-shadow: 0 0 0 0.25rem rgba(88, 103, 221, 0.25) !important;
}

.chart-container {
    position: relative;
    height: 40vh;
    width: 100%;
}

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1rem 0;
    margin-top: 2rem;
}