/* GHL Common Styles - extracted from internal <style> blocks */

/* --- Task Modal Specific Styles (from class-ghl-contacts.php) --- */
.ghl-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    overflow: hidden;
}
.ghl-modal-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 600px;
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}
.ghl-modal-header {
    padding: 20px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.ghl-modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ghl-modal-title i {
    font-size: 24px;
    color: #2563eb;
}
.ghl-modal-title h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}
.ghl-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.ghl-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}
.ghl-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex-grow: 1;
}
.ghl-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.ghl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.ghl-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ghl-form-field label {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ghl-form-field .required {
    color: #dc2626;
}
.ghl-input-group {
    position: relative;
    display: flex;
    align-items: center;
}
.ghl-input-group i {
    position: absolute;
    left: 12px;
    color: #64748b;
    font-size: 16px;
}
.ghl-input-group input,
.ghl-input-group textarea,
.ghl-input-group select {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
    transition: all 0.2s ease;
}
.ghl-input-group input:focus,
.ghl-input-group textarea:focus,
.ghl-input-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.ghl-input-group input::placeholder,
.ghl-input-group textarea::placeholder {
    color: #94a3b8;
}
.ghl-input-group textarea {
    resize: vertical;
    min-height: 100px;
}
.ghl-form-field.full-width {
    grid-column: 1 / -1;
}
.ghl-form-actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    z-index: 1;
}
.ghl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* --- Contacts Page Styles (from class-ghl-contacts.php) --- */
.ghl-contacts-page {
    margin: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.ghl-contacts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.ghl-contacts-title h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
}
.ghl-contacts-count {
    color: #6b7280;
    font-size: 14px;
    margin-top: 4px;
}
.ghl-contacts-actions {
    display: flex;
    gap: 12px;
}
.ghl-contacts-actions .button {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    height: auto;
    line-height: 1.4;
}
.ghl-contacts-table-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.ghl-contacts-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.ghl-contacts-table th {
    background: #f9fafb;
    padding: 12px 24px;
    font-weight: 500;
    color: #6b7280;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.ghl-contacts-table th a {
    color: #6b7280;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ghl-contacts-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    font-size: 14px;
}
.check-column {
    width: 40px;
    padding-right: 0;
}
.check-column input[type="checkbox"] {
    margin: 0;
}
.contact-name {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar-placeholder {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #6b7280;
    font-size: 16px;
}
.contact-info {
    display: flex;
    flex-direction: column;
}
.contact-name-link {
    color: #111827;
    font-weight: 500;
    text-decoration: none;
}
.contact-company {
    color: #6b7280;
    font-size: 13px;
    margin-top: 2px;
}
.contact-phone,
.contact-email {
    color: #2563eb;
    text-decoration: none;
}
.time {
    color: #6b7280;
    font-size: 13px;
    margin-top: 2px;
}
.contact-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #e5e7eb;
    border-radius: 12px;
    font-size: 12px;
    color: #374151;
    margin-right: 4px;
}
.column-actions {
    width: 48px;
    text-align: center;
}
.action-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6b7280;
    border-radius: 4px;
}
.action-button:hover {
    background: #f3f4f6;
    color: #374151;
}
.ghl-contacts-pagination {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}
.ghl-contacts-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    margin: 0 2px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
}

/* --- Contact Details Page Styles (from class-ghl-contacts.php) --- */
.ghl-contact-details-page {
    margin: 20px;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.ghl-back-button {
    margin-bottom: 24px;
}
.ghl-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    background: #f3f4f6;
    transition: all 0.2s ease;
}
.ghl-back-link:hover {
    background: #e5e7eb;
    color: #1f2937;
}
.ghl-contact-details {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ghl-contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
}
.ghl-contact-header-left {
    display: flex;
    gap: 24px;
    align-items: center;
}
.ghl-contact-avatar {
    width: 72px;
    height: 72px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #6b7280;
    font-weight: 600;
}
.ghl-contact-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.ghl-contact-header-info h1 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
}
.contact-company {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ghl-contact-tags {
    padding: 16px 32px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ghl-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 16px;
    font-size: 12px;
    color: #4b5563;
    font-weight: 500;
}
.ghl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ghl-btn-primary {
    background: #2563eb;
    color: #ffffff;
}
.ghl-btn-primary:hover {
    background: #1d4ed8;
}
.ghl-btn-secondary {
    background: #f3f4f6;
    color: #4b5563;
}
.ghl-btn-secondary:hover {
    background: #e5e7eb;
    color: #1f2937;
}
.ghl-contact-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    padding: 24px 32px;
}
.ghl-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
}
.ghl-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ghl-card-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Opportunities Page Styles (from class-ghl-opportunities.php) --- */
.ghl-opportunities-wrap {
    margin: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.ghl-opportunities-header {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ghl-header-content h1 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1e1e1e;
}
.ghl-pipeline-stats {
    display: flex;
    gap: 24px;
    color: #4B5563;
    font-size: 14px;
}
.total-opportunities, .total-value {
    display: flex;
    align-items: center;
    gap: 8px;
}
.total-value {
    color: #059669;
    font-weight: 600;
}
.select-wrapper {
    position: relative;
    width: 250px;
}
.select-wrapper select {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    appearance: none;
    background: white;
    cursor: pointer;
}
.select-wrapper .fa-chevron-down {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    pointer-events: none;
}
.ghl-kanban-board {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 12px 4px 24px 4px;
    min-height: calc(100vh - 220px);
    align-items: flex-start;
}
.ghl-kanban-board::-webkit-scrollbar {
    height: 8px;
}
.ghl-kanban-board::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 4px;
}
.ghl-kanban-board::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}
.ghl-stage {
    flex: 0 0 320px;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 16px;
    max-height: calc(100vh - 240px);
    display: flex;
    flex-direction: column;
}
.ghl-stage-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}
.stage-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.stage-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}
.opportunity-count {
    background: #E5E7EB;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #4B5563;
}
.ghl-stage-stats {
    color: #059669;
    font-size: 14px;
    font-weight: 600;
}
.ghl-opportunities {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100px;
    padding: 4px;
    border-radius: 8px;
    overflow-y: auto;
}
.ghl-opportunities::-webkit-scrollbar {
    width: 4px;
}
.ghl-opportunities::-webkit-scrollbar-track {
    background: transparent;
}
.ghl-opportunities::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 2px;
}
.ghl-opportunities.droppable-hover {
    background: #F3F4F6;
    border: 2px dashed #9CA3AF;
}
.ghl-opportunity-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px;
    cursor: move;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.ghl-opportunity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-color: #D1D5DB;
}
.ghl-opportunity-card.dragging {
    opacity: 0.5;
    transform: scale(0.98);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.card-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    flex: 1;
}

/* --- Modern Contact Details Page Styles --- */
.ghl-contact-details-modern {
  margin: 32px auto;
  max-width: 1200px;
  background: #f8fafc;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,41,59,0.07);
  padding: 0 0 32px 0;
}
.ghl-contact-details-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 40px 0 40px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  border-bottom: 1px solid #e5e7eb;
  gap: 32px;
}
.ghl-contact-header-main {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ghl-contact-avatar-modern {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e0e7ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  color: #2563eb;
  overflow: hidden;
}
.ghl-contact-avatar-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.ghl-avatar-placeholder-modern {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  color: #2563eb;
  background: #e0e7ef;
  border-radius: 50%;
}
.ghl-contact-header-info-modern {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ghl-contact-name-modern {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}
.ghl-contact-company-modern {
  font-size: 1rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ghl-contact-header-actions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ghl-contact-tags-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 40px 0 40px;
}
.ghl-tag-modern {
  background: #e0e7ef;
  color: #2563eb;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.ghl-contact-details-body {
  display: flex;
  gap: 32px;
  padding: 32px 40px 0 40px;
}
.ghl-contact-main-modern {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ghl-contact-sidebar-modern {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 320px;
}
.ghl-card-modern {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,41,59,0.06);
  padding: 0 0 0 0;
  margin-bottom: 0;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}
.ghl-card-header-modern {
  padding: 18px 24px 0 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border-radius: 14px 14px 0 0;
  min-height: 56px;
  justify-content: space-between;
}
.ghl-card-body-modern {
  padding: 18px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ghl-info-list-modern {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ghl-info-row-modern {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}
.ghl-info-label-modern {
  min-width: 110px;
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ghl-info-value-modern {
  color: #1e293b;
  font-weight: 500;
  word-break: break-all;
}
.ghl-opportunities-list-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ghl-opportunity-modern {
  background: #f8fafc;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #e5e7eb;
}
.ghl-opportunity-title-modern {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2563eb;
}
.ghl-opportunity-meta-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: #64748b;
  align-items: center;
}
.ghl-opportunity-value-modern {
  color: #059669;
  font-weight: 600;
  margin-left: auto;
}
.ghl-appointments-cards-list-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 0 0 0;
}
.ghl-appointment-card-modern {
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30,41,59,0.04);
  border: 1px solid #e5e7eb;
  margin: 0;
  padding: 0;
}
.ghl-appointment-card-modern .ghl-card-header-modern {
  font-size: 1.08rem;
  font-weight: 600;
  color: #2563eb;
  background: #f1f5fa;
  border-radius: 10px 10px 0 0;
  padding: 14px 20px 0 20px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.ghl-appointment-body-modern {
  padding: 12px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- Modern Contact Details Hero Header Styles --- */
.ghl-contact-details-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 48px 48px 32px 48px;
  background: linear-gradient(90deg, #f1f5fa 60%, #e0e7ef 100%);
  border-radius: 18px 18px 0 0;
  border-bottom: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(30,41,59,0.06);
  margin-bottom: 0;
  position: relative;
  min-height: 160px;
}
.ghl-contact-header-main-modern {
  display: flex;
  align-items: center;
  gap: 36px;
}
.ghl-contact-avatar-hero {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #e0e7ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  box-shadow: 0 4px 16px rgba(37,99,235,0.10);
  overflow: hidden;
}
.ghl-contact-avatar-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.ghl-avatar-placeholder-hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  background: #e0e7ef;
  border-radius: 50%;
}
.ghl-contact-header-info-hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ghl-contact-name-hero {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -1px;
  margin-bottom: 2px;
}
.ghl-contact-company-hero {
  font-size: 1.08rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}
.ghl-contact-tags-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.ghl-tag-hero {
  background: #e0e7ef;
  color: #2563eb;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.ghl-contact-header-actions-hero {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-left: 32px;
}
@media (max-width: 900px) {
  .ghl-contact-details-header-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 32px 16px 24px 16px;
    min-height: 120px;
  }
  .ghl-contact-header-main-modern {
    gap: 18px;
  }
  .ghl-contact-header-actions-hero {
    margin-left: 0;
    margin-top: 18px;
  }
}

.ghl-card-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 0 20px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e293b;
  background: transparent;
  border-radius: 10px 10px 0 0;
  min-height: 44px;
  margin-bottom: 0;
  justify-content: flex-start;
}
.ghl-card-header-icon {
  font-size: 1.2em;
  color: #2563eb;
  display: flex;
  align-items: center;
}
.ghl-card-header-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e293b;
  margin-right: auto;
  display: flex;
  align-items: center;
}
.ghl-card-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ghl-card-header-row-tasks {
  padding-right: 12px;
}
.ghl-card-modern {
  margin-bottom: 16px;
  padding-bottom: 0;
}
.ghl-contact-details-body {
  padding-top: 18px;
  gap: 18px;
}
.ghl-contact-main-modern, .ghl-contact-sidebar-modern {
  gap: 16px;
}
.ghl-card-body-modern {
  padding: 12px 20px 18px 20px;
  gap: 8px;
}
.ghl-appointments-cards-list-modern {
  gap: 12px;
  padding: 10px 0 0 0;
} 