


.custom-fixed-bottom {
    box-shadow: 0 0 10px #ddd;
    border-top: 1px solid #fff;
}

.custom-fixed-bottom button {
  margin: 0 100px !important; /* 10px nas laterais (esquerda e direita) */
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index:1;
}

.sticky:before,
.sticky:after {
    content: '';
    display: table;
}

.premium-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.60); /* Semi-transparent black background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    z-index: 2; 
    border-radius: 5px;
}

.alert {
  border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.11);
  display: table;
  width: 100%;
}

.alert-white {
  background-image: linear-gradient(to bottom, #fff, #f9f9f9);
  border-top-color: #d8d8d8;
  border-bottom-color: #bdbdbd;
  border-left-color: #cacaca;
  border-right-color: #cacaca;
  color: #404040;
  padding-left: 61px;
  position: relative;
}

.alert-white.rounded {
  border-radius: 3px;
  -webkit-border-radius: 3px;
}

.alert-white.rounded .icon {
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
}

.alert-white .icon {
  text-align: center;
  width: 45px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #bdbdbd;
  padding-top: 15px;
}


.alert-white .icon:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #bdbdbd;
  position: absolute;
  border-left: 0;
  border-bottom: 0;
  top: 50%;
  right: -6px;
  margin-top: -3px;
  background: #fff;
}

.alert-white .icon i {
  font-size: 20px;
  color: #fff;
  left: 12px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}
/*============ colors ========*/
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-white.alert-success .icon, 
.alert-white.alert-success .icon:after {
  border-color: #54a754;
  background: #60c060;
}

.alert-white.alert-warning .icon, 
.alert-white.alert-warning .icon:after {
  border-color: #d68000;
  background: #fc9700;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #f1daab;
  color: #c09853;
}



@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(219, 101, 42, 0.4);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(219, 101, 42, 0.4);
  }
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 5px rgba(219, 101, 42, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 5px rgba(219, 101, 42, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 5px rgba(219, 101, 42, 0.5));
  }
}

@keyframes outlinePulse {
    0%, 100% {
        outline: 1px solid rgba(219, 101, 42, 0.2);
    }
    20% {
        outline: 2px solid rgba(219, 101, 42, 0.4);
    }
    40% {
        outline: 3px solid rgba(219, 101, 42, 0.6);
    }
    60% {
        outline: 2px solid rgba(219, 101, 42, 0.8);
    }
    80% {
        outline: 2px solid rgba(219, 101, 42, 0.4);
    }
    
}


.subtle-highlight {
  position: relative;
}

.subtle-highlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: subtlePulse 2s infinite ease-in-out;
}







/* Para o alerta de ajuste de visualização */
  .zoom-alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    max-width: 90%;
    width: 90%;
  }

  .zoom-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .zoom-button {
    background-color: #4b5563;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
  }

  .zoom-button:hover {
    background-color: #2f3b52 ;
  }

  .close-button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    /*margin-left: auto;*/
  }

  .zoom-value {
    margin: 0 8px;
    min-width: 45px;
    text-align: center;
  }

    .bg-light-gray {
        background: #f9f9f9 !important;
    }
