/* Bootstrap overrides - keep your custom colors */
body {
    font-family: Arial, sans-serif !important;
    background: #0b0c10 !important;
    color: #c5c6c7 !important;
    margin: 0;
    padding: 0;
}
header {
    background: #1f2833 !important;
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
    color: #66fcf1 !important;
}
.text-muted {
    color: #a0a0a0 !important;
}
small {
    color: #a0a0a0 !important;
}
main {
    padding: 1rem;
    max-width: 1200px;
    margin: auto;
}
.city {
    margin-bottom: 2rem;
    background: #1f2833;
    padding: 1rem;
    border-radius: 8px;
}
.body-card {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: #0b0c10;
    border: 1px solid #45a29e;
    border-radius: 5px;
}
h2, h3 {
    color: #45a29e !important;
}
.label {
    font-weight: bold;
    color: #66fcf1 !important;
}
p {
    color: #c5c6c7 !important;
}
.loading {
    text-align: center;
    padding: 2rem;
}
.error {
    color: #ff6b6b !important;
    padding: 1rem;
    background: #2e1f1f;
    border-radius: 5px;
}
.date-input {
    margin: 1rem 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
input, button {
    padding: 0.5rem;
    background: #1f2833;
    color: #c5c6c7 !important;
    border: 1px solid #45a29e;
    border-radius: 4px;
}
button {
    cursor: pointer;
    background: #45a29e !important;
    color: #0b0c10 !important;
    font-weight: bold;
}
button:hover {
    background: #66fcf1 !important;
}
.data-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}
/* Responsive: stack columns on mobile */
@media (max-width: 768px) {
    .data-container {
        grid-template-columns: 1fr;
    }
}
.data-column {
    background: #1a1f29;
    padding: 0.8rem;
    border-radius: 5px;
}
.data-section {
    margin-bottom: 1rem;
}
.data-section h4 {
    color: #66fcf1 !important;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #45a29e;
    padding-bottom: 0.3rem;
}
.events-section {
    margin-bottom: 2rem;
}
[data-tooltip] {
    position: relative;
    cursor: help;
    border-bottom: 1px dotted #66fcf1;
}
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2833 !important;
    color: #c5c6c7 !important;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #45a29e;
    font-size: 0.9rem;
    white-space: normal;
    width: 250px;
    text-align: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
[data-tooltip]:hover::after {
    opacity: 1;
}
/* Bootstrap component overrides */
.location-controls {
    background: #1f2833 !important;
    border-radius: 5px;
}
.btn-primary {
    background-color: #45a29e !important;
    border-color: #45a29e !important;
    color: #0b0c10 !important;
    font-weight: bold;
}
.btn-primary:hover {
    background-color: #66fcf1 !important;
    border-color: #66fcf1 !important;
}
.form-control::placeholder {
    color: #888 !important;
    opacity: 1;
}
.form-control {
    background-color: #1f2833 !important;
    color: #c5c6c7 !important;
    border-color: #45a29e !important;
}
.form-control:focus {
    background-color: #1f2833 !important;
    color: #c5c6c7 !important;
    border-color: #66fcf1 !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 252, 241, 0.25) !important;
}
