/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */


body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111C2E;
    color: #ccc;
}
header {
    background-color: #29384C;
    padding: 20px 0;
    text-align: center;
}
header img {
    max-width: 150px;
}
nav {
    background-color: #29384C;
    text-align: center;
}
nav a {
    display: inline-block;
    color: #ccc;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}
nav a:hover {
    background-color: #111C2E;
    color: #fff;
}
.main-body {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #29384C;
}






/* body {
    font-family: Arial, sans-serif;
    background-color: #111C2E;
    color:#ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

header {
    width: 100%;
    background-color: #29384C;
    color: #ccc;
    padding: 10px 0;
    text-align: center;
} */

h1 {
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    margin-top: 20px;
}

h4 {
    margin-bottom: 20px;
    margin-top: 20px;
}

ol {
    margin-left: 20px;
    padding-left: 20px;
}
/* 
.logo img {
    max-height: 150px;
}

nav {
    margin-top: 10px;
}

.nav-menu {
    list-style: none;
    padding: 0;
}

.nav-menu li {
    display: inline;
    margin: 0 2px;
}

.nav-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
    background-color: #29384C;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: #48648A;
    text-decoration: none;
} */

/* main {
    padding: 20px;
    width: 80%;
    margin: 0 auto;
} */

.header-container,
.form-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.card {
    width:95%;
    max-width: 1200px;
    min-width: 400px;
    background-color: #29384C;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    color: #ccc;
    font-size: 1.2rem; /* Smaller font size */
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}

.card-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow flex items to wrap */
}

.card-content {
    width: 40%;
}

.chart-container {
    width: 60%;
}
/* Media query for mobile devices */
@media (max-width: 1150px) {
    .card-content, .chart-container {
        width: 100%;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

canvas {
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.leaflet-tooltip.spawns {
    background-color: transparent;
    border: transparent;
    box-shadow: none;
    font-weight: normal;
    font-size: 15px;
    }
.leaflet-tooltip.house {
    background-color: transparent;
    border: transparent;
    box-shadow: none;
    font-weight: normal;
    color: blue;
    font-size: 18px;
    } 

    /* D86600 */

.leaflet-tooltip.black {
    background-color: transparent;
    box-shadow: none !important;
    font-weight: normal;
    border: none !important;
    color: black;
    font-size: 18px;
    }
    .leaflet-tooltip.green {
        background-color: transparent;
        box-shadow: none !important;
        font-weight: normal;
        border: none !important;
        color: #22721f;
        font-size: 18px;
        }
        .leaflet-tooltip.orange {
            background-color: transparent;
            box-shadow: none !important;
            font-weight: normal;
            border: none !important;
            color: #D86600;
            font-size: 18px;
            }
        .leaflet-tooltip.brown {
            background-color: transparent;
            box-shadow: none !important;
            font-weight: normal;
            border: none !important;
            color: #7D4206;
            font-size: 18px;
            }
    .leaflet-tooltip-top:before, 
    .leaflet-tooltip-bottom:before, 
    .leaflet-tooltip-left:before, 
    .leaflet-tooltip-right:before {
        border: none !important;
    }