html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Unique light background pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Behind the dots */
    opacity: 0.4;
    background-image: radial-gradient(circle at 20% 30%, rgba(74, 107, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 94, 98, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(38, 208, 206, 0.15) 0%, transparent 50%);
}

/* Corrected Dot Pattern */
.bg-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* On top of the color pattern */
    /* FIX: Increased opacity for visibility */
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Restore legacy admin table look for DataTables instance */
#myTable {
    width: 100%;
    border-collapse: collapse;
}

#myTable thead th {
    background-color: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 1px solid #eaeaea;
}

#myTable tbody td {
    padding: 15px;
    border-bottom: 1px solid #f1f1f1;
}

#myTable tbody tr:hover {
    background-color: #f8f9fa;
}

/* Remove DataTables default underline */
table.dataTable.no-footer {
    border-bottom: none;
}
