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%;
}

body {
  margin-bottom: 60px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .form-group label {
        width: 150px;
        /* Adjust this width as needed */
    }

    .form-group select {
        flex: 1;
    }

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

.th-sort-asc::after {
    content: " \25B4";
    /* Up arrow */
}

.th-sort-desc::after {
    content: " \25BE";
    /* Down arrow */
}

.data-table-container {
    max-width: 100%;
    overflow-x: auto;
}

data-table-mainner {
    max-width: 100%;
    overflow-x: auto;
}

.highcharts-container {
    max-height: 100%;
    max-width: 100%;
}

.maincontent {
    height: 90vh;
}

.spinner {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    /* Adjusted height */
    animation: spin 2s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.footer .container {
    text-align: center;
}