/* ============================================================================
   ANOTACOES COMPONENTS
   ============================================================================ */

.cliente-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.anotacoes-btn-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.anotacoes-btn-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #c21a26;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

.anotacoes-btn-corner:hover {
  background: #a50d17;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}

.anotacoes-btn-corner:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

.anotacoes-icon {
  transition: transform .2s ease;
}

.anotacoes-btn-corner:hover .anotacoes-icon {
  transform: scale(1.1);
}

.anotacoes-list {
  margin-top: 15px;
}

.anotacao-item {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 10px;
  background: #f9f9f9;
}

.anotacao-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e0e0e0;
  font-size: .9em;
  color: #666;
  position: relative;
}

.anotacao-data {
  margin-right: 10px;
  font-weight: 600;
}

.anotacao-login {
  flex-grow: 1;
  color: #c21a26;
}

.anotacao-texto {
  white-space: pre-line;
  line-height: 1.5;
}

.sem-anotacoes {
  padding: 15px;
  text-align: center;
  color: #666;
  font-style: italic;
  background: #f9f9f9;
  border-radius: 4px;
}

.copy-icon,
.check-icon {
  pointer-events: none;
}

.check-icon {
  color: #28a745;
}