.nav-link-calendario {
  color: #7fa653;
}

.nav-link-inbox {
  color: #206a8d;
  position: relative;
}

.flash-modal-dialog {
  position: relative;
}

.footer-spacing-sm {
  margin-top: 8px;
}

.consent-shield-icon {
  color: #7fa653;
  font-size: 48px;
  margin-bottom: 15px;
}

.consent-success-message {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.consent-success-highlight {
  color: #7fa653;
}

.consent-description-message {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.consent-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.consent-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: consent-fade-in-modal 0.3s ease-out forwards;
}

@keyframes consent-fade-in-modal {
  to {
    opacity: 1;
  }
}

.consent-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.consent-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 550px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: consent-slide-in-up 0.4s ease-out;
  z-index: 10001;
}

@keyframes consent-slide-in-up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

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

.consent-modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.consent-modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.consent-modal-body {
  margin-bottom: 30px;
}

.consent-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: #f0f7ff;
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  margin-top: 20px;
}

.consent-info i {
  color: #2196f3;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.consent-info p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}

.consent-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.consent-btn i {
  font-size: 18px;
}

.consent-btn-accept {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: #fff;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.consent-btn-accept:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
  transform: translateY(-2px);
}

.consent-btn-reject {
  background: linear-gradient(135deg, #757575, #616161);
  color: #fff;
  box-shadow: 0 4px 12px rgba(117, 117, 117, 0.3);
}

.consent-btn-reject:hover {
  background: linear-gradient(135deg, #616161, #424242);
  box-shadow: 0 6px 16px rgba(117, 117, 117, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .consent-modal-content {
    padding: 25px 20px;
    width: 95%;
  }

  .consent-modal-header h2 {
    font-size: 20px;
  }

  .consent-modal-body p {
    font-size: 14px;
  }

  .consent-btn {
    font-size: 15px;
    padding: 14px 20px;
  }
}
