.customl-modal-overlay {
  position: absolute;
  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;
}
.customl-start-conversation-btn.customl-btn-disabled,
.customl-schedule-btn.customl-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}

.customl-start-conversation-btn.customl-btn-disabled:hover,
.customl-schedule-btn.customl-btn-disabled:hover {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  transform: none;
  box-shadow: none;
}
.customl-modal-container {
  position: relative;
  width: 100%;
  max-width: 1030px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Modern Custom Fields Section */
.customl-section {
  margin-bottom: 24px;
}

.customl-section-header {
  margin-bottom: 16px;
}

.customl-section-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Loading state */
.customl-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: #666;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.customl-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top: 2px solid #722ed1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Custom fields container */
.customl-custom-fields-container {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Grid layout for fields */
.customl-custom-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

/* Field card styling */
.customl-field-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.customl-field-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.customl-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #eee;
}

.customl-field-label {
  font-weight: 500;
  font-size: 13px;
  color: #555;
}

.customl-field-edit-btn {
  background: none;
  border: none;
  color: #722ed1;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.customl-field-edit-btn:hover {
  background-color: rgba(114, 46, 209, 0.1);
}

.customl-field-edit-btn i {
  font-size: 16px;
}

.customl-field-content {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.customl-field-value {
  font-size: 14px;
  color: #333;
  word-break: break-word;
  width: 100%;
}

.customl-field-empty {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #999;
  font-size: 13px;
  font-style: italic;
  width: 100%;
}

.customl-field-empty i {
  font-size: 16px;
}

.customl-empty-field {
  background-color: #fff;
  border: 1px solid #f0f0f0;
}

/* No fields message */
.customl-no-fields {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 6px;
  color: #888;
  font-size: 14px;
}

.customl-no-fields i {
  font-size: 18px;
  color: #aaa;
}

/* Toggle view button */
.customl-toggle-view {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* .customl-toggle-btn {
  background: none;
  border: none;
  color: #722ed1;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.customl-toggle-btn:hover {
  background-color: rgba(114, 46, 209, 0.08);
}

.customl-toggle-btn i {
  font-size: 16px;
} */

/* Edit field modal */


.customl-edit-form {
  background-color: white;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.customl-edit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.customl-edit-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.customl-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s ease;
}

.customl-close-btn:hover {
  color: #d43838;
}

.customl-close-btn i {
  font-size: 20px;
}

.customl-edit-content {
  padding: 16px;
}

.customl-form-group {
  margin-bottom: 16px;
}

.customl-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.customl-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background-color: #f9f9f9;
}

.customl-input:focus {
  outline: none;
  border-color: #722ed1;
  box-shadow: 0 0 0 3px rgba(114, 46, 209, 0.1);
  background-color: #fff;
}

.customl-input::-moz-placeholder {
  color: #aaa;
}

.customl-input::placeholder {
  color: #aaa;
}

.customl-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.customl-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.customl-btn-cancel {
  background-color: #f5f5f5;
  color: #666;
}

.customl-btn-cancel:hover {
  background-color: #e8e8e8;
  color: #333;
}

.customl-btn-save {
  background-color: #722ed1;
  color: white;
}

.customl-btn-save:hover {
  background-color: #5b21b6;
}

.customl-btn-save:disabled {
  background-color: #d3adf7;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .customl-custom-fields-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .customl-custom-fields-grid {
    grid-template-columns: 1fr;
  }

  .customl-edit-form {
    width: 95%;
  }
}



/* Add new styles for inline name editing */
.customl-edit-name-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-right: 8px;
}

.customl-name-input {
  font-size: 20px;
  font-weight: 600;
  padding: 8px 12px;
  margin-bottom: 4px;
}

.customl-display-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.customl-display-name h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #262626;
}

.customl-lead-id {
  font-size: 14px;
  font-weight: normal;
  color: #999;
  margin-left: 4px;
}

.customl-name-with-edit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.customl-edit-name-btn,
.customl-inline-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.customl-edit-name-btn:hover {
  background-color: rgba(24, 144, 255, 0.1);
  transform: scale(1.1);
}

.customl-edit-name-btn i,
.customl-inline-btn i {
  font-size: 18px;
}

.customl-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  z-index: 10;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.customl-close-button:hover {
  color: #d43838;
}

.customl-close-button i {
  font-size: 20px;
}

.customl-status-icon.customl-rating {
  color: #faad14;
}

.customl-star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.customl-star {
  cursor: pointer;
  color: #d9d9d9;
  transition: color 0.2s;
  font-size: 18px;
}

.customl-star:hover,
.customl-star-filled {
  color: #faad14;
}

.customl-star i {
  font-size: 18px;
}

.customl-modal-content {
  display: flex;
  height: 100%;
  overflow: hidden;
  flex: 1;
}

.customl-left-column {
  width: 40%;
  padding: 24px;
  border-right: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* overflow-y: auto; */
}

.customl-left-column-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  overflow-y: auto;
  padding-bottom: 10px;
}

.customl-right-column {
  width: 60%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.customl-right-column-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.customl-profile-image {
  width: 60%;
  max-width: 120px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f2f5;
  margin: 0 auto 12px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 3px solid #f0f2f5;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customl-profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.customl-status-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.customl-verified {
  background-color: #f6ffed;
  color: #52c41a;
  border: 1px solid #b7eb8f;
}

.customl-not-verified {
  background-color: #fffbe6;
  color: #faad14;
  border: 1px solid #ffe58f;
}

.customl-no-account {
  background-color: #f5f5f5;
  color: #8c8c8c;
  border: 1px solid #d9d9d9;
}

.customl-paused {
  background-color: #fff2f0;
  color: #ff4d4f;
  border-color: #ffccc7;
}

.customl-status-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.customl-status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
}

.customl-status-icon i {
  font-size: 18px;
}

.customl-status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 6px 5px;
  position: relative;
  border-bottom: 1px dashed #f5f5f5;
}

.customl-status-item:last-child {
  border-bottom: none;
}

.customl-status-text {
  flex: 1;
  line-height: 1.4;
  word-break: break-word;
}

.customl-edit-email-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.customl-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 4px;
}

.customl-input-inline {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
}

.customl-input-inline:focus {
  outline: none;
  border-color: #722ed1;
  box-shadow: 0 0 0 2px rgba(114, 46, 209, 0.2);
}

.customl-input-inline.error {
  border-color: #ff4d4f;
}

.customl-edit-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  align-self: flex-end;
}

.customl-display-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.customl-email-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 40px);
  /* Leave space for the edit button */
}

.customl-save-btn {
  color: #52c41a;
}

.customl-save-btn:hover:not(:disabled) {
  background-color: #f6ffed;
}

.customl-cancel-btn {
  color: #ff4d4f;
}

.customl-cancel-btn:hover {
  background-color: #fff2f0;
}

.customl-edit-btn {
  color: #722ed1;
  margin-left: 8px;
}

.customl-edit-btn:hover {
  background-color: #f9f0ff;
}

.customl-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.customl-empty-value {
  color: #999;
  font-style: italic;
}

/* Novos estilos para os itens clicáveis - CORRIGIDO */
.customl-status-item.customl-clickable {
  cursor: pointer;
  padding: 0;
  margin: 4px 0;
}

.customl-clickable-content {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 6px 5px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.customl-status-item.customl-clickable:hover .customl-clickable-content {
  background-color: #f5f5f5;
}

.customl-arrow-icon {
  margin-left: auto;
  color: #8c8c8c;
}

.customl-status-item.customl-clickable:hover .customl-arrow-icon {
  color: #1890ff;
  transform: translateX(2px);
}

/* Cores para os novos ícones */
.customl-status-icon.customl-opportunities {
  color: #fa8c16;
}

.customl-status-icon.customl-conversations {
  color: #1890ff;
}

.customl-status-icon.customl-wallet {
  color: #13c2c2;
}

.customl-status-icon.customl-enrolled {
  color: #52c41a;
}

.customl-status-icon.customl-active {
  color: #1890ff;
}

.customl-status-icon.customl-email {
  color: #722ed1;
  margin-top: 5px;
}

.customl-status-icon.customl-channel {
  color: #eb2f96;
}

.customl-status-icon.customl-whatsapp {
  color: #44e04c;
}

.customl-status-icon.customl-time,
.customl-status-icon.customl-id,
.customl-status-icon.customl-sms {
  color: #8c8c8c;
}

.customl-text-muted {
  color: #8c8c8c;
  font-weight: normal;
}

.customl-text-active {
  color: #1890ff;
  font-weight: 500;
}

.customl-info-icon {
  margin-left: auto;
  color: #8c8c8c;
  cursor: pointer;
}

.customl-info-icon i {
  font-size: 20px;
}

.customl-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.customl-action-buttons .customl-start-conversation-btn {
  margin-top: 0;
}

/* Botão de iniciar conversa melhorado com ícone */
.customl-start-conversation-btn {
  margin-top: 16px;
  background-color: #1890ff;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}

.customl-conversation-icon {
  font-size: 20px;
}

.customl-start-conversation-btn:hover {
  background-color: #40a9ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 144, 255,
      0.4);
}

.customl-start-conversation-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

.customl-schedule-btn {
  background-color: #722ed1;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(114, 46, 209, 0.25);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}

.customl-schedule-icon {
  font-size: 20px;
}

.customl-schedule-btn:hover {
  background-color: #9254de;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(114, 46, 209, 0.35);
}

.customl-schedule-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(114, 46, 209, 0.2);
}

.customl-contact-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  padding: 24px 24px 16px 24px;
  flex-shrink: 0;
}

.customl-contact-name h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #262626;
}

.customl-lead-id {
  font-size: 14px;
  font-weight: normal;
  color: #999;
  margin-left: 4px;
}

/* Dropdown de opções */
.customl-options-dropdown {
  position: relative;
}

.customl-options-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #8c8c8c;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}

.customl-options-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #555;
}

.customl-options-btn i {
  font-size: 22px;
}

.customl-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 100;
  overflow: hidden;
}

.customl-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  color: #333;
}

.customl-dropdown-item:hover {
  background-color: #f5f5f5;
}

.customl-dropdown-item i {
  font-size: 20px;
}

.customl-delete-item {
  color: #ff4d4f;
}

.customl-delete-item:hover {
  background-color: #fff1f0;
}

.customl-section {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 16px;
}

.customl-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #262626;
  margin: 0 0 12px 0;
}

.newsletter-section {
  margin-bottom: 20px;
}

.newsletter-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.newsletter-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.newsletter-combobox-wrapper {
  margin-top: 8px;
}

.newsletter-container {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 0;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.newsletter-container:hover {
  border-color: #c0c0c0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.newsletter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 12px;
  border-right: 1px solid #e0e0e0;
}

.newsletter-icon i {
  font-size: 20px;
  color: #666;
}

.newsletter-select-wrapper {
  position: relative;
  flex-grow: 1;
}

.newsletter-select {
  width: 100%;
  padding: 12px 40px 12px 15px;
  font-size: 14px;
  color: #333;
  border: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
}

.newsletter-select:focus {
  background-color: #f9f9f9;
}

.newsletter-select option {
  padding: 10px;
  background: white;
  color: #333;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.select-arrow i {
  font-size: 18px;
  color: #666;
}

/* Estilização para quando o select está focado */
.newsletter-select:focus+.select-arrow i {
  color: #007bff;
}

/* Estilização para quando o container está focado */
.newsletter-container:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Estilização para quando não há opção selecionada */
.newsletter-select:invalid {
  color: #999;
}

.customl-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.customl-sign-btn {
  background: none;
  border: none;
  color: #1890ff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.customl-sign-btn:hover {
  color: #40a9ff;
  text-decoration: underline;
}

.customl-attachment {
  background-color: #fffbe6;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.customl-attachment:last-child {
  margin-bottom: 0;
}

.customl-attachment-icon {
  color: #faad14;
}

.customl-attachment-icon i {
  font-size: 20px;
}

.customl-attachment-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.customl-attachment-name {
  font-weight: 500;
}

.customl-attachment-date {
  font-size: 12px;
  color: #8c8c8c;
}

/* Estilos para a seção de tags */
.customl-add-tag-btn {
  background: none;
  border: none;
  color: #1890ff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.customl-add-tag-btn:hover {
  color: #40a9ff;
  text-decoration: underline;
}

.customl-plus-icon {
  font-size: 16px;
}

.customl-tags-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  color: #666;
}

.customl-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Seletor de tags */
.customl-tag-selector {
  background-color: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.customl-tag-selector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8e8;
  background-color: #f0f0f0;
}

.customl-tag-selector-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.customl-close-tag-selector {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
}

.customl-close-tag-selector:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #666;
}

.customl-tag-selector-content {
  padding: 16px;
  max-height: 200px;
  overflow-y: auto;
}

.customl-create-tag-btn {
  background-color: #1890ff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.2s;
}

.customl-create-tag-btn:hover {
  background-color: #40a9ff;
}

.customl-tags-container {
  margin-top: 12px;
}

.customl-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.customl-tag {
  display: inline-flex;
  align-items: center;
  background-color: #f0f2f5;
  border-radius: 16px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #e0e0e0;
}

.customl-tag:hover {
  background-color: #e6f7ff;
  border-color: #91d5ff;
}

.customl-tag-active {
  background-color: #f6ffed;
  border-color: #b7eb8f;
  color: #389e0d;
}

.customl-unassociated-tag {
  background-color: #f5f5f5;
  border: 1px dashed #d9d9d9;
  color: #666;
}

.customl-unassociated-tag:hover {
  background-color: #e6f7ff;
  border-color: #1890ff;
  border-style: solid;
}

.customl-tag-text {
  font-size: 13px;
  margin-right: 6px;
}

.customl-tag-counter {
  background-color: #e6f7ff;
  border-color: #91d5ff;
  color: #1890ff;
  cursor: pointer;
  font-weight: 600;
}

.customl-tag-counter:hover {
  background-color: #bae7ff;
  border-color: #1890ff;
}

.customl-tags-toggle {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.customl-tags-toggle-btn {
  background: none;
  border: none;
  outline: none;
  color: #1890ff;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.customl-tags-toggle-btn:hover {
  background-color: #f0f5ff;
}

/* Ajustes responsivos para a exibição de tags */
@media (max-width: 768px) {
  .customl-tags-list {
    gap: 6px;
  }

  .customl-tag {
    padding: 4px 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .customl-tags-list {
    gap: 4px;
  }

  .customl-tag {
    padding: 3px 8px;
    font-size: 11px;
  }

  .customl-tag-icon {
    width: 16px;
    height: 16px;
  }
}

.customl-tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #e0e0e0;
  font-size: 12px;
}

.customl-tag-active .customl-tag-icon {
  background-color: #52c41a;
  color: white;
}

.customl-unassociated-tag .customl-tag-icon {
  background-color: #1890ff;
  color: white;
}

.customl-no-tags-message {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background-color: #f9f9f9;
  border: 1px dashed #e0e0e0;
  border-radius: 6px;
  color: #8c8c8c;
  font-size: 13px;
}

.customl-no-tags-message i {
  font-size: 16px;
  color: #bfbfbf;
}

/* Notes container styles */
.customl-notes-container {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 8px;
  margin-top: 10px;
  padding-right: 5px;
  scrollbar-width: thin;
}

.customl-notes-container::-webkit-scrollbar {
  width: 5px;
}

.customl-notes-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.customl-notes-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.customl-notes-container::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.customl-notes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 5px 0;
}


/* See more button styles */
.customl-see-more-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.customl-see-more-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: transparent;
  border: none;
  color: #6c757d;
  font-size: 0.875rem;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.customl-see-more-btn:hover {
  color: #495057;
  background-color: #f1f3f5;
  border-radius: 4px;
}

/* Campos personalizados */
.customl-tags-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  color: #666;
}

.customl-custom-fields-container {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 16px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 12px;
}

.customl-custom-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.customl-custom-field-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.customl-custom-field-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.customl-field-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e8e8e8;
}

.customl-field-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.customl-field-edit-icon {
  background: none;
  border: none;
  color: #1890ff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
}

.customl-field-edit-icon:hover {
  background-color: rgba(24, 144, 255, 0.1);
}

.customl-field-card-value {
  padding: 12px;
  font-size: 14px;
  color: #333;
  word-break: break-word;
  flex-grow: 1;
  min-height: 50px;
}

.customl-field-card-empty {
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #bfbfbf;
  font-size: 13px;
  min-height: 50px;
}

.customl-field-card-empty i {
  font-size: 18px;
}

.customl-empty-field {
  background-color: #fafafa;
  border: 1px dashed #d9d9d9;
}

.customl-no-fields-message {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background-color: #f9f9f9;
  border: 1px dashed #e0e0e0;
  border-radius: 6px;
  color: #8c8c8c;
  font-size: 13px;
}

.customl-no-fields-message i {
  font-size: 16px;
  color: #bfbfbf;
}

/* Formulário de edição */
.customl-edit-field-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: 1100;
}

.customl-edit-field-form {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 400px;
  overflow: hidden;
}

.customl-edit-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8e8;
  background-color: #f0f0f0;
}

.customl-edit-field-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.customl-close-edit-form {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
}

.customl-close-edit-form:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #666;
}

.customl-edit-field-content {
  padding: 16px;
}

.customl-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.customl-form-group label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
}

.customl-form-input {
  padding: 8px 10px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 14px;
}

.customl-form-input:focus {
  outline: none;
  border-color: #40a9ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.customl-edit-field-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
  .customl-modal-content {
    flex-direction: column;
  }

  .customl-left-column,
  .customl-right-column {
    width: 100%;
    border-right: none;
    max-height: none;
  }

  .customl-left-column {
    border-bottom: 1px solid #eaeaea;
  }

  .customl-tag-selector {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    z-index: 1100;
  }

  .customl-note-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .customl-note-actions-container {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .customl-note-item {
    position: relative;
    padding-top: 30px;
  }

  .customl-custom-fields-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .customl-custom-fields-container {
    max-height: 250px;
  }
}

@media (max-width: 576px) {
  .customl-notes-container {
    max-height: 250px;
  }

  .customl-note-type-selector {
    flex-direction: column;
    align-items: flex-start;
  }

  .customl-note-type-select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .customl-custom-fields-grid {
    grid-template-columns: 1fr;
  }

  .customl-custom-fields-container {
    max-height: 200px;
  }
}

/* Modern Editable Fields Styling */
.customl-editable-fields-container {
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.customl-editable-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.customl-editable-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.customl-field-label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 2px;
}

.customl-input-group {
  display: flex;
  position: relative;
}

.customl-field-input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background-color: white;
}

.customl-field-input:focus {
  outline: none;
  border-color: #722ed1;
  box-shadow: 0 0 0 3px rgba(114, 46, 209, 0.1);
}

.customl-field-input::-moz-placeholder {
  color: #aaa;
  font-style: italic;
  font-size: 13px;
}

.customl-field-input::placeholder {
  color: #aaa;
  font-style: italic;
  font-size: 13px;
}

.customl-field-save-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #722ed1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.customl-field-save-btn:hover {
  background-color: rgba(114, 46, 209, 0.1);
}

.customl-field-save-btn:disabled {
  color: #d3adf7;
  cursor: not-allowed;
}

.customl-field-save-btn i {
  font-size: 18px;
}

.customl-no-fields {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  border: 1px dashed #ddd;
}

.customl-no-fields i {
  font-size: 20px;
  color: #aaa;
}

.customl-toggle-view {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.customl-toggle-btn {
  background: none;
  border: none;
  color: #722ed1;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.customl-toggle-btn:hover {
  background-color: rgba(114, 46, 209, 0.08);
}

.customl-toggle-btn i {
  font-size: 16px;
}

.customl-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: #666;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.customl-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top: 2px solid #722ed1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .customl-editable-fields-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Name error and email error styles */
.customl-name-error,
.customl-email-error {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #ff4d4f;
  margin-top: 4px;
}

.customl-name-error i,
.customl-email-error i {
  font-size: 14px;
}

.customl-inline-edit-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.customl-inline-name-edit {
  flex: 1;
  padding: 8px 12px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: #262626;
  width: 100%;
}

.customl-inline-name-edit:focus {
  outline: none;
}

.customl-inline-edit-actions {
  display: flex;
  border-left: 1px solid #e2e8f0;
}

.customl-inline-edit-btn {
  background: none;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.customl-inline-save-btn {
  color: #10b981;
}

.customl-inline-save-btn:hover {
  background-color: #ecfdf5;
}

.customl-inline-save-btn:disabled {
  color: #94a3b8;
  cursor: not-allowed;
}

.customl-inline-cancel-btn {
  color: #ef4444;
}

.customl-inline-cancel-btn:hover {
  background-color: #fef2f2;
}
/* Animation styles */
.note-fade-enter-active[data-v-2abeadc3],
.note-fade-leave-active[data-v-2abeadc3] {
    transition: all 0.3s ease;
}
.note-fade-enter-from[data-v-2abeadc3],
.note-fade-leave-to[data-v-2abeadc3] {
    opacity: 0;
    transform: translateY(10px);
}

/* Section header styles */
.customl-section-header[data-v-2abeadc3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}
.customl-section-header h3[data-v-2abeadc3] {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.customl-add-tag-btn[data-v-2abeadc3] {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: #1890ff;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

/* .customl-add-tag-btn:hover {
    background-color: rgba(24, 144, 255, 0.1);
} */
.customl-plus-icon[data-v-2abeadc3] {
    font-size: 16px;
}

/* Note form styles */
.customl-note-form[data-v-2abeadc3] {
    background-color: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}
.customl-note-type-selector[data-v-2abeadc3] {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.customl-note-type-selector label[data-v-2abeadc3] {
    white-space: nowrap;
    font-size: 14px;
}
.customl-note-type-select[data-v-2abeadc3] {
    flex: 1;
    min-width: 120px;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    font-size: 14px;
}
.customl-note-textarea[data-v-2abeadc3] {
    width: 100%;
    padding: 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 12px;
}
.customl-note-textarea[data-v-2abeadc3]:focus {
    outline: none;
    border-color: #40a9ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.customl-note-actions[data-v-2abeadc3] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}
.customl-note-cancel-btn[data-v-2abeadc3],
.customl-note-save-btn[data-v-2abeadc3] {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.customl-note-cancel-btn[data-v-2abeadc3] {
    background-color: white;
    border: 1px solid #d9d9d9;
    color: #666;
}
.customl-note-cancel-btn[data-v-2abeadc3]:hover {
    background-color: #f5f5f5;
    color: #333;
}
.customl-note-save-btn[data-v-2abeadc3] {
    background-color: #1890ff;
    border: 1px solid #1890ff;
    color: white;
}
.customl-note-save-btn[data-v-2abeadc3]:hover {
    background-color: #40a9ff;
    border-color: #40a9ff;
}
.customl-note-save-btn[data-v-2abeadc3]:disabled {
    background-color: #f5f5f5;
    border-color: #d9d9d9;
    color: #bfbfbf;
    cursor: not-allowed;
}

/* Note item styles */
.customl-notes-list[data-v-2abeadc3] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.customl-note-item[data-v-2abeadc3] {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}
.customl-note-item[data-v-2abeadc3]:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Improved note header with responsive layout */
.customl-note-header[data-v-2abeadc3] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}
.customl-note-meta[data-v-2abeadc3] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0; /* Important for text overflow to work */
}
.customl-note-type-badge[data-v-2abeadc3] {
    display: inline-block;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    margin-right: 8px;
    white-space: nowrap;
}
.customl-note-date[data-v-2abeadc3] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
    font-size: 11px;
    color: #6c757d;
}
.customl-note-user[data-v-2abeadc3], 
.customl-note-time[data-v-2abeadc3] {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.customl-note-separator[data-v-2abeadc3] {
    color: #adb5bd;
    display: inline-block;
}
.customl-note-date i[data-v-2abeadc3] {
    font-size: 14px;
}

/* Note type colors */
.customl-note-call[data-v-2abeadc3] {
    background-color: #e6f0ff;
    color: #1d4ed8;
}
.customl-note-meeting[data-v-2abeadc3] {
    background-color: #e6fffa;
    color: #099268;
}
.customl-note-email[data-v-2abeadc3] {
    background-color: #edf2ff;
    color: #722ed1;
}
.customl-note-lunch[data-v-2abeadc3] {
    background-color: #fff0f6;
    color: #d6336c;
}
.customl-note-general[data-v-2abeadc3] {
    background-color: #f1f3f5;
    color: #495057;
}
.customl-note-reminder[data-v-2abeadc3] {
    background-color: #fff4e6;
    color: #e67700;
}

/* Note content styles */
.customl-note-content[data-v-2abeadc3] {
    font-size: 14px;
    line-height: 1.5;
    color: #212529;
    word-break: break-word;
    transition: max-height 0.3s ease;
}

/* Truncated note styles */
.customl-note-truncated[data-v-2abeadc3] {
    max-height: 4.5em; /* Approximately 3 lines of text */
    overflow: hidden;
    position: relative;
}
.customl-note-truncated[data-v-2abeadc3]::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0), rgba(248, 249, 250, 1));
}

/* Expand/collapse button */
.customl-note-expand[data-v-2abeadc3] {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}
.customl-note-expand-btn[data-v-2abeadc3] {
    background: none;
    border: none;
    color: #1890ff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}
.customl-note-expand-btn[data-v-2abeadc3]:hover {
    background-color: rgba(24, 144, 255, 0.1);
}
.customl-note-expand-btn i[data-v-2abeadc3] {
    font-size: 14px;
}

/* Action buttons */
.customl-note-actions-container[data-v-2abeadc3] {
    display: flex;
    gap: 5px;
}
.customl-note-edit-btn[data-v-2abeadc3],
.customl-note-delete-btn[data-v-2abeadc3] {
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
    border-radius: 4px;
}
.customl-note-edit-btn[data-v-2abeadc3]:hover {
    color: #1971c2;
    background-color: rgba(25, 113, 194, 0.1);
}
.customl-note-delete-btn[data-v-2abeadc3]:hover {
    color: #e03131;
    background-color: rgba(224, 49, 49, 0.1);
}

/* Empty state message */
.customl-no-notes-message[data-v-2abeadc3] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
    font-size: 14px;
    border: 1px dashed #dee2e6;
}
.customl-no-notes-message i[data-v-2abeadc3] {
    font-size: 18px;
    color: #adb5bd;
}

/* Pagination controls */
.customl-toggle-view[data-v-2abeadc3] {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
.customl-toggle-btn[data-v-2abeadc3] {
    background: none;
    border: none;
    color: #1890ff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 16px;
    transition: all 0.2s ease;
}
.customl-toggle-btn[data-v-2abeadc3]:hover {
    background-color: rgba(24, 144, 255, 0.08);
}
.customl-toggle-btn i[data-v-2abeadc3] {
    font-size: 16px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
.customl-note-meta[data-v-2abeadc3] {
        flex-direction: row;
        align-items: center;
}
.customl-note-type-badge[data-v-2abeadc3] {
        margin-bottom: 0;
}
}
@media (max-width: 480px) {
.customl-note-date[data-v-2abeadc3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
}
.customl-note-separator[data-v-2abeadc3] {
        display: none;
}
.customl-note-actions[data-v-2abeadc3] {
        justify-content: center;
}
}


.customl-modal-overlay[data-v-5e958a6b] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.customl-modal-container[data-v-5e958a6b] {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.customl-modal-header[data-v-5e958a6b] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}
.customl-modal-title[data-v-5e958a6b] {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: #333;
}
.customl-close-button[data-v-5e958a6b] {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.customl-modal-body[data-v-5e958a6b] {
  padding: 20px 24px;
}
.customl-form-group[data-v-5e958a6b] {
  margin-bottom: 1rem;
}
.customl-select[data-v-5e958a6b] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.customl-modal-footer[data-v-5e958a6b] {
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #eee;
}
.customl-btn.primary[data-v-5e958a6b] {
  background-color: #13c2c2;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.customl-btn.primary[data-v-5e958a6b]:disabled {
  background-color: #d9d9d9;
  cursor: not-allowed;
}

.customl-modal-overlay[data-v-f848fa88] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.customl-modal-container[data-v-f848fa88] {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.customl-modal-header[data-v-f848fa88] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}
.customl-modal-title[data-v-f848fa88] {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.customl-close-button[data-v-f848fa88] {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.customl-modal-body[data-v-f848fa88] {
  padding: 20px 24px;
}
.customl-modal-footer[data-v-f848fa88] {
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #eee;
}

.customl-section[data-v-6a2a7f35] {
    margin-bottom: 24px;
}
.customl-section-header[data-v-6a2a7f35] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.customl-section-header h3[data-v-6a2a7f35] {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}
.customl-section-header h3 i[data-v-6a2a7f35] {
    color: #13c2c2;
    font-size: 18px;
}
.customl-wallet-header-actions[data-v-6a2a7f35] {
    display: flex;
    align-items: center;
    gap: 12px;
}
.customl-wallet-count[data-v-6a2a7f35] {
    font-size: 13px;
    color: #666;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 12px;
}
.customl-add-wallet-btn[data-v-6a2a7f35] {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.customl-add-wallet-btn[data-v-6a2a7f35]:hover {
    background-color: #f0f0f0;
    border-color: #d9d9d9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.customl-add-wallet-btn i[data-v-6a2a7f35] {
    font-size: 16px;
    color: #13c2c2;
}

/* Wallet content */
.customl-wallet-content[data-v-6a2a7f35] {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #eaeaea;
}

/* Table styles */
.customl-wallet-table-wrapper[data-v-6a2a7f35] {
    overflow-x: auto;
    width: 100%;
}
.customl-wallet-table[data-v-6a2a7f35] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.customl-wallet-table th[data-v-6a2a7f35] {
    background-color: #fafafa;
    color: #555;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #eaeaea;
    white-space: nowrap;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.customl-wallet-table td[data-v-6a2a7f35] {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}
.customl-wallet-row[data-v-6a2a7f35] {
    transition: background-color 0.2s ease;
}
.customl-wallet-row[data-v-6a2a7f35]:hover {
    background-color: #f0f9fa;
}
.customl-wallet-row:last-child td[data-v-6a2a7f35] {
    border-bottom: none;
}

/* Cell content */
.customl-wallet-cell-content[data-v-6a2a7f35] {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ID column */
.customl-wallet-id-col[data-v-6a2a7f35] {
    width: 60px;
}
.customl-wallet-id[data-v-6a2a7f35] {
    text-align: center;
}
.customl-wallet-id-badge[data-v-6a2a7f35] {
    background-color: #f0f9fa;
    color: #13c2c2;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Actions column */
.customl-wallet-actions-col[data-v-6a2a7f35] {
    width: 100px;
    text-align: center;
}
.customl-wallet-actions[data-v-6a2a7f35] {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.customl-wallet-action-btn[data-v-6a2a7f35] {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}
.customl-transfer-btn[data-v-6a2a7f35]:hover {
    background-color: #e6f7ff;
    color: #1890ff;
}
.customl-delete-btn[data-v-6a2a7f35]:hover {
    background-color: #fff1f0;
    color: #ff4d4f;
}

/* No data message */
.customl-no-data[data-v-6a2a7f35] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    color: #888;
    text-align: center;
}
.customl-no-data i[data-v-6a2a7f35] {
    font-size: 32px;
    color: #d9d9d9;
}

/* Pagination */
.customl-wallet-pagination[data-v-6a2a7f35] {
    padding: 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
}
.customl-pagination[data-v-6a2a7f35] {
    margin-bottom: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.customl-wallet-table th[data-v-6a2a7f35],
    .customl-wallet-table td[data-v-6a2a7f35] {
        padding: 10px 12px;
}
.customl-wallet-cell-content[data-v-6a2a7f35] {
        max-width: 150px;
}
.customl-add-wallet-text[data-v-6a2a7f35] {
        display: none;
}
.customl-add-wallet-btn[data-v-6a2a7f35] {
        padding: 6px;
}
}
@media (max-width: 576px) {
.customl-section-header[data-v-6a2a7f35] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
}
.customl-wallet-header-actions[data-v-6a2a7f35] {
        width: 100%;
        justify-content: space-between;
}
.customl-wallet-count[data-v-6a2a7f35] {
        align-self: flex-start;
}
.customl-wallet-table[data-v-6a2a7f35] {
        font-size: 13px;
}
.customl-wallet-table th[data-v-6a2a7f35] {
        font-size: 11px;
}
.customl-wallet-cell-content[data-v-6a2a7f35] {
        max-width: 120px;
}
.customl-wallet-action-btn[data-v-6a2a7f35] {
        width: 28px;
        height: 28px;
}
}

/* Base styles */
.customlcf-section[data-v-3965eff5] {
  margin-bottom: 24px;
  width: 100%;
}
.customlcf-section-header[data-v-3965eff5] {
  margin-bottom: 16px;
}
.customlcf-section-header h3[data-v-3965eff5] {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Loading state */
.customlcf-loading[data-v-3965eff5] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: #666;
  background-color: #f9f9f9;
  border-radius: 8px;
}
.customlcf-spinner[data-v-3965eff5] {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top: 2px solid #722ed1;
  border-radius: 50%;
  animation: spin-3965eff5 1s linear infinite;
}
@keyframes spin-3965eff5 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* Editable fields container */
.customlcf-editable-fields-container[data-v-3965eff5] {
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden; /* Prevent overflow */
  width: 100%;
}

/* Grid layout for fields - Improved responsiveness */
.customlcf-editable-fields-grid[data-v-3965eff5] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  width: 100%;
}

/* Field styling */
.customlcf-editable-field[data-v-3965eff5] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.customlcf-field-label[data-v-3965eff5] {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.customlcf-input-group[data-v-3965eff5] {
  display: flex;
  position: relative;
  width: 100%;
}
.customlcf-field-input[data-v-3965eff5] {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background-color: white;
  overflow: hidden;
  text-overflow: ellipsis;
}
.customlcf-field-input[data-v-3965eff5]:focus {
  outline: none;
  border-color: #722ed1;
  box-shadow: 0 0 0 3px rgba(114, 46, 209, 0.1);
}
.customlcf-field-input[data-v-3965eff5]::-moz-placeholder {
  color: #aaa;
  font-style: italic;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.customlcf-field-input[data-v-3965eff5]::placeholder {
  color: #aaa;
  font-style: italic;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.customlcf-field-save-btn[data-v-3965eff5] {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #722ed1;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.customlcf-field-save-btn[data-v-3965eff5]:hover {
  background-color: rgba(114, 46, 209, 0.1);
}
.customlcf-field-save-btn[data-v-3965eff5]:disabled {
  color: #d3adf7;
  cursor: not-allowed;
}
.customlcf-field-save-btn i[data-v-3965eff5] {
  font-size: 18px;
}

/* No fields message */
.customlcf-no-fields[data-v-3965eff5] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  border: 1px dashed #ddd;
  width: 100%;
}
.customlcf-no-fields i[data-v-3965eff5] {
  font-size: 20px;
  color: #aaa;
}

/* Toggle view button */
.customlcf-toggle-view[data-v-3965eff5] {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.customlcf-toggle-btn[data-v-3965eff5] {
  background: none;
  border: none;
  color: #722ed1;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 16px;
  transition: all 0.2s ease;
}
.customlcf-toggle-btn[data-v-3965eff5]:hover {
  background-color: rgba(114, 46, 209, 0.08);
}
.customlcf-toggle-btn i[data-v-3965eff5] {
  font-size: 16px;
}

/* Improved responsive adjustments */
@media (max-width: 1200px) {
.customlcf-editable-fields-grid[data-v-3965eff5] {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
}
@media (max-width: 992px) {
.customlcf-editable-fields-grid[data-v-3965eff5] {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
}
@media (max-width: 768px) {
.customlcf-editable-fields-grid[data-v-3965eff5] {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.customlcf-field-input[data-v-3965eff5] {
    padding: 8px 36px 8px 10px;
    font-size: 13px;
}
.customlcf-field-save-btn[data-v-3965eff5] {
    width: 28px;
    height: 28px;
}
.customlcf-field-save-btn i[data-v-3965eff5] {
    font-size: 16px;
}
}
@media (max-width: 576px) {
.customlcf-editable-fields-grid[data-v-3965eff5] {
    grid-template-columns: 1fr;
}
.customlcf-editable-fields-container[data-v-3965eff5] {
    padding: 12px;
}
}
@media (max-width: 480px) {
.customlcf-field-label[data-v-3965eff5] {
    font-size: 12px;
}
.customlcf-field-input[data-v-3965eff5] {
    padding: 8px 32px 8px 8px;
    font-size: 12px;
}
.customlcf-field-save-btn[data-v-3965eff5] {
    width: 24px;
    height: 24px;
    right: 2px;
}
.customlcf-field-save-btn i[data-v-3965eff5] {
    font-size: 14px;
}
}
