html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.loading-blur {
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
}

.loading-blur::before{
    border: 4px solid #f3f3f3; /* Light grey border */
    border-top: 4px solid #3498db; /* Blue border for the spinning part */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: block;
    content:'';
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* NAVBAR INTERNO */

.action-menu .nav-link {
    font-weight: 500;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.action-menu .nav-link:hover {
    background-color: #f0f0f0;
}

.text-teal {
    color: #00b7b3;
}

.text-teal:hover {
    color: #007c78;
}

.form-picker-range input {  

  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  height: 58px;
  padding-top: 1.625rem;
  padding-bottom: .625rem;
  padding-left: .75rem;
}

.form-picker-range input:disabled {
    background-color: #e9ecef;
    opacity: 1;
}
.form-picker-range input::placeholder {
    color: #000;
}

.form-picker-range .dp__input_icon{
    display: none !important;
}

.form-datepicker label{
    font-size: 0.75rem;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    max-width: 100%;
    height: 100%;
    padding: 1rem .75rem;
    overflow: hidden;
    color: rgba(var(--bs-body-color-rgb), .65);
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: var(--bs-border-width) solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

.cursor-pointer {
  cursor: pointer;
}

/* Estilo para itens colapsados */
tr[style*="display: none"] {
  transition: all 0.3s ease;
}

.text-loading-simple::after {
    content: '';
    animation: simpleEllipsis 1.5s infinite;
}

@keyframes simpleEllipsis {
    0% { content: ''; }
    33% { content: '.'; }
    66% { content: '..'; }
    100% { content: '...'; }
}