/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

body {
    background-color: #f4f6f9;
    font-family: 'Kanit', sans-serif;
}

/* Navbar Customization */
.navbar-custom {
    background-color: #0d6efd;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #fff;
}

/* Card Styling */
.card {
    box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
    margin-bottom: 1rem;
}

/* Map specific styling */
#map {
    height: 400px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Datatable customization */
table.dataTable thead th,
table.dataTable thead td {
    padding: 10px 18px;
    border-bottom: 1px solid #dee2e6;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #dee2e6;
}