.novedad-popup {
  padding: 20px;
  background-color: #fefefe;
  border-radius: 8px;
  max-width: 500px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.novedad-popup h3 {
  margin-top: 0;
  color: #2c3e50;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.novedad-popup dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 12px;
}

.novedad-popup dt {
  font-weight: 600;
  text-align: right;
  color: #555;
}

.novedad-popup dd {
  margin: 0;
  color: #000;
}
md-toast.error-toast {
    background: red;
}

md-toast.error-toast .md-toast-content{
    background: red;
    color: white;
}
@media (min-width: 1920px) {
    md-toast .md-toast-content {
        max-width: 800px;
    }
}
md-toast .md-toast-content {
    overflow: auto;
    display: inline-block;
    width: 90%;
}
md-toast button {
    padding: 5px !important;
    float: right;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;
  right: 25px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float:hover::after {
  content: attr(uib-tooltip);
  position: absolute;
  bottom: 100%;
  left: -20px;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 10px;
  z-index: 1001;
}

.whatsapp-float:hover::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  z-index: 1001;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 24px;
    border-radius: 4px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 
                0 16px 24px 2px rgba(0, 0, 0, 0.14), 
                0 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.popup-title {
    margin-top: 0;
    color: #3f51b5;
}

.popup-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.popup-content button:not(:disabled){
  background-image: linear-gradient(to right, #52277c 0, #52277c 5%, #e43d30 95%);
  color: #fff !important;
}
form[name="forgotPasswordForm"] img {
    max-width: 200px;
}