.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3;
    max-width: 400px;
}

.alert {
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    color: white;
    font-family: sans-serif;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.alert-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.alert-error {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.alert-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    width: 100%;
    animation: progress 3s linear forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

.alert.hiding {
    animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideOut {
    to {
        transform: translateX(100%);
        opacity: 0;
        margin-bottom: -60px;
    }
}


.dt-modal-body {
  padding: 20px 0;
  max-height: 400px;
  overflow-y: auto;
}

.dt-text {
  background-color: #f5f6f7;
  width: 90%;
  height: 32px;
  padding: 5px;
}

.dt-areatext {
  background-color: #f5f6f7;
  padding: 5px;
  width: 90%;
  height: 70px;
  text-align: justify;
  overflow-y: auto;
  border: none;
}

/* Estilos para textarea desabilitado */
.dt-areatext:disabled {
  background-color: #f5f6f7;
  padding: 5px;
  width: 90%;
  height: 70px;
  text-align: justify;
  overflow-y: auto;
  border: none;
}

.dt-lb-campo {
  font-weight: 700;
  color:#555;
}

.dt-lb-ativo {
  color: green;
  font-weight: 700;
  font-size: larger;
}

.dt-lb-suspenso {
  color: orange;
  font-weight: 700;
  font-size: larger;
}

.dt-lb-desativado {
  color: red;
  font-weight: 700;
  font-size: larger;
}