body {
    font-family: 'Montserrat', sans-serif;
}

section {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.navbar-brand {
    font-size: 1.5rem;
}

button {
    font-family: 'Montserrat', sans-serif;
}
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(14px);
}
th {
    cursor: pointer;
    position: relative;
}

th.sorted-asc::after {
    content: " ▲";
    position: absolute;
    right: 5px;
}

th.sorted-desc::after {
    content: " ▼";
    position: absolute;
    right: 5px;
}

