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;
}

.circular-input {
    /*  width: 200px;
     height: 50px;*/
    border-radius: 25%; /* Makes the div circular */
    /*background-color: #3498db;*/ /* Set background color */
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    text-align: center;
}
.borderclass {
    border: 1px solid black;
}

input[type="text"] {
    /*width: 80%;*/
    padding: 10px;
    /*border: none;*/
    /*outline: none;*/
    border-radius: 20px; /* Optional: Adds rounded corners to the input */
}

/*.ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
}

.ui-menu-item {
    display: inline-block;
    width: 30%;
    padding: 5px;
    vertical-align: top;
    white-space: normal;
    text-align: left;
}

    .ui-menu-item div {
        margin-bottom: 5px;
    }*/

/* Style the list items as table rows */
.ui-autocomplete {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: table;
    width: 100%;
}

    .ui-autocomplete > li {
        display: table-row;
    }

        .ui-autocomplete > li > div {
            display: table-cell;
            padding: 10px;
            border: 1px solid #ccc; /* Optional: Add border to mimic table cells */
        }


.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left;
}

    .styled-table th, .styled-table td {
        padding: 12px 15px;
    }

    .styled-table th {
        background-color: #007BFF;
        color: white;
        border-radius: 10px; /* Adds rounded corners to the headers */
        border: 2px solid white; /* Adds a white border around the headers */
    }

        .styled-table th:not(:last-child) {
            margin-right: 10px; /* Adds separation between headers */
        }

.blue-header {
    color: #007BFF;
}