@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css');

/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}
.form-select, .form-control {
    border-color: #5e6888!important;
}

/* Header styles */
.navbar-brand {
    font-weight: bold;
}

/* Card styles */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

/* Table styles */
.table th {
    background-color: #f8f9fa;
}

/* Form styles */
.form-control, .form-select {
    border-radius: 5px;
}

.logo {
    display: block;
    width: 120px;
    margin: 30px auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Button styles */
.btn {
    border-radius: 5px;
    padding: 0.375rem 0.75rem;
}

/* Alert styles */
.alert {
    border-radius: 5px;
}

/* Dashboard cards */
.dashboard-card {
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

#myTable.display {
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.25) !important;
  border-radius: 0px;
}

#myTable.display tfoot tr > th, 
#myTable.display thead tr > th, 
.table tbody.map-table tr > th {
  padding: 10px 5px;
  padding-left: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  border-right: 1px solid rgba(0,0,0,0.25);
  border-top: none;
}

#myTable.display tbody tr > td {
  padding: 7px 5px;
  padding-left: 10px;
  font-size: 14px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  border-right: 1px solid rgba(0,0,0,0.25);
  border-top: none;
}