html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Estilos personalizados simples */

.log-out {
    color: #c7c7c7;
}

    .log-out:hover {
        color: #fdc500;
    }

.circle {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    padding-top: 0.4px;
    display: inline-block;
    margin-right: 5px;
    cursor: pointer;
}

.gray {
    background-color: #dcdcdc;
    border: 2px solid #cacaca;
}

.green {
    background-color: #00a500;
    border: 2px solid #007200;
}

.yellow {
    background-color: orange;
    border: 2px solid #dd8f00;
}

.red {
    background-color: #d20000;
    border: 2px solid #a70000;
}

.black {
    background-color: black;
    border: 2px solid #0000;
}

.dataTables_paginate a {
    margin: 0 6px;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #bbbbbb; 
    border-top: 3px solid black; 
    border-radius: 50%; 
    animation: rotating 0.5s linear infinite;
    margin: auto;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

