/*
 Theme Name: Superdocu Theme
 Theme URI: https://superdocu.com/
 Description: Superdocu child theme based on Divi.
 Author: Marwann Al Saadi
 Author URI: https://marwann.com/
 Template: Divi
 Version: 1.0.0
*/

:root {
  --primary: #0D55FF;
  --primary-light: #74EAFF;
  --primary-mid: #00B5FF;
  --background: #F0FCFF;
  --foreground: #001C39;
  --muted: #7A8CA0;
  --border: #D1E9F3;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
}


::selection {
  background-color: rgba(13,85,255,0.25);
  color: #0D55FF;
}
::-moz-selection {
  background-color: rgba(13,85,255,0.25);
  color: #0D55FF;
}


.feature-card:hover>.icon-blue .et-pb-icon, .feature-card:hover>.icon-blue-dash {
  color:#FFF;
}

.feature-card:hover>.icon-blue>.et_pb_icon_wrap, .feature-card:hover>.icon-blue-dash {
  background:#0D55FF;
}

.feature-card:hover>.icon-blue-light .et-pb-icon {
  color:#FFF;
}

.feature-card:hover>.icon-blue-light>.et_pb_icon_wrap {
  background:#00B5FF;
}

.feature-card:hover>.icon-blue-dark .et-pb-icon {
  color:#FFF;
}

.feature-card:hover>.icon-blue-dark>.et_pb_icon_wrap {
  background:#0000BB;
}

.text-highlight {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  transform: skewY(-2deg);
}

.bg-darkblue {
  background-color: #001845;
}

.bg-electricblue {
  background-color: #74EAFF;
}

.bg-ultramarineblue {
  background-color: #0D55FF;
}

.bg-white {
 background-color: #FFF;
}

/* -------------------- */
/* Utility & Layout Classes */
/* -------------------- */
.full-width { width: 100%; }
.full-height { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-4 { padding: 1rem; }
.padding-2 { padding: 0.5rem; }
.border { border: 1px solid #e5e7eb; }
.border-bottom { border-bottom: 1px solid #e5e7eb; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.opacity-70 { opacity: 0.7; }
.opacity-90 { opacity: 0.9; }
.cursor-pointer { cursor: pointer; }
.shrink-0 { flex-shrink: 0; }
.space-y-2 > :not(:last-child) { margin-bottom: 0.5rem; }
.text-sm { font-size: 0.875rem; }
.font-medium { font-weight: 500; }
/* Ordering (example media query for large screens) */
.order-1 { order: 1; }
.lg-order-2 { order: 1; }
@media (min-width: 1024px) {
  .lg-order-2 { order: 2; }
}
/* Responsive height for main container */
.responsive-height { height: 400px; }
@media (min-width: 640px) {
  .responsive-height { height: 450px; }
}
@media (min-width: 1024px) {
  .responsive-height { height: 500px; }
}

/* -------------------- */
/* Animations */
/* -------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float { animation: float 3s ease-in-out infinite; }

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse-soft { animation: pulse-soft 2s ease-in-out infinite; }

/* -------------------- */
/* Glass Morphism */
/* -------------------- */
.glass-morphism {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* -------------------- */
/* Card Stack Effects */
/* -------------------- */
.card-stack {
  top: 2rem;
  right: 2rem;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
}
.rotate-6 { transform: rotate(6deg) scale(0.95); }
.rotate-3 { transform: rotate(3deg) scale(0.95); }

/* -------------------- */
/* Gradients */
/* -------------------- */
.bg-gradient-card {
  background: linear-gradient(to right, rgba(0, 204, 204, 0.4), rgba(0, 102, 204, 0.3));
}
.bg-gradient-header {
  background: linear-gradient(to right, rgba(0, 204, 204, 0.1), rgba(0, 102, 204, 0.05));
}
.bg-semiwhite {
  background: rgba(255, 255, 255, 0.5);
}

/* -------------------- */
/* Header & Dots */
/* -------------------- */
.card-header {
  height: 3rem;
  border-bottom: 1px solid #e5e7eb;
}
.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
.dot-cyan { background-color: #06b6d4; }        /* Example brand cyan */
.dot-blue { background-color: #3b82f6; }         /* Example brand blue */
.dot-primary-blue { background-color: #2563eb; }  /* Example primary blue */
.title {
  margin: 0 auto;
  font-size: 0.875rem;
  font-weight: 500;
}

/* -------------------- */
/* Content Card */
/* -------------------- */
.content-card {
  width: 100%;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
}
.content-header {
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid #e5e7eb;
}
.pulse-bar {
  width: 75%;
  height: 1.5rem;
  background-color: rgb(233, 247, 251); /* Muted color */
  border-radius: 0.375rem;
  animation: pulse-soft 2s ease-in-out infinite;
}
.icon-wrapper {
  width: 2rem;
  height: 2rem;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------- */
/* List Items */
/* -------------------- */
.list-items { display: flex; flex-direction: column; gap: 0.75rem; }
.list-item {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 0.375rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow 0.3s ease;
}
.list-item:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.icon-container {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.group:hover .icon-container {
  background: rgba(0, 102, 204, 0.2);
}
.icon-inner {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
}
/* Background colors for list item icons */
.bg-primary-blue-10 { background: rgba(37, 99, 235, 0.1); }
.bg-primary-blue-30 { background: rgba(37, 99, 235, 0.3); }
.bg-cyan-10 { background: rgba(6, 182, 212, 0.1); }
.bg-cyan-30 { background: rgba(6, 182, 212, 0.3); }
/* Lines in list item content */
.line {
  background-color: rgb(233, 247, 251);
  border-radius: 100px;
}
.line-1 { width: 66.66%; height: 1rem; }
.line-2 { width: 50%; height: 0.75rem; background: rgba(233, 247, 251, 0.7); }
/* Status indicators */
.status-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.bg-green-500 { background-color: #22c55e; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-muted { background-color: #a1a1aa; }

/* -------------------- */
/* Decorative Elements */
/* -------------------- */
.decorative-top {
  top: -1.5rem;
  right: -1.5rem;
  width: 7rem;
  height: 7rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
}
.decorative-bottom {
  bottom: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
}

/* -------------------- */
/* Floating Badges */
/* -------------------- */
.floating-badge {
  position: absolute;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}
.badge-right {
  right: -1rem;
  top: 25%;
}
.badge-left {
  left: -1rem;
  bottom: 25%;
}
.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* -------------------- */
/* SVG Icon Sizing */
/* -------------------- */
.shield-icon,
.check-icon,
.zap-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.blurry-background {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/*  Document collection animation */
.document-collector {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.folder-container {
  position: absolute;
  width: 90px;
  height: 70px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 55%;
}

.folder {
  position: absolute;
  width: 80px;
  height: 60px;
  background: linear-gradient(135deg, #74EAFF, #0D55FF);
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0 3px 10px rgba(13, 85, 255, 0.2);
}

.folder:before {
  content: '';
  position: absolute;
  width: 35px;
  height: 12px;
  background: linear-gradient(135deg, #74EAFF, #0D55FF);
  top: -12px;
  left: 0;
  border-radius: 5px 5px 0 0;
}

.document-float {
  position: absolute;
  width: 60px;
  height: 80px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  top: 50%;
  left: 50%;
  transform: translate(10px, -60%);
  animation: float-document 4s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.document-float:before, .document-float:after {
  content: '';
  position: absolute;
  left: 10px;
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
}

.document-float:before {
  width: 30px;
  top: 20px;
}

.document-float:after {
  width: 20px;
  top: 30px;
}

.document-icon {
  position: absolute;
  width: 20px;
  height: 25px;
  top: 8px;
  right: 8px;
  background: #0D55FF;
  opacity: 0.8;
  border-radius: 2px;
}

@keyframes float-document {
  0%, 100% {
    transform: translate(10px, -60%) rotate(0deg);
  }
  50% {
    transform: translate(10px, -90%) rotate(5deg);
  }
}

/* Validation animation - STANDARDIZED SIZE */
.validation-animation {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-validation {
  position: absolute;
  width: 100px;
  height: 130px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.validation-line {
  position: absolute;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  left: 15px;
  right: 15px;
}

.validation-line:nth-child(1) {
  top: 25px;
  width: 60%;
}

.validation-line:nth-child(2) {
  top: 45px;
  width: 40%;
}

.validation-line:nth-child(3) {
  top: 65px;
  width: 70%;
}

.validation-scan {
  position: absolute;
  height: 15px;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, 
    rgba(116, 234, 255, 0) 0%,
    rgba(116, 234, 255, 0.8) 50%,
    rgba(116, 234, 255, 0) 100%);
  animation: scan-document 3s ease-in-out infinite;
}

.validation-check {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #74EAFF, #0D55FF);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 20%;
  transform: translate(0, -50%) scale(0);
  animation: check-appear 3s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(13, 85, 255, 0.3);
}

.validation-check::before {
  content: "";
  display: block;
  width: 25px;
  height: 12px;
  border: 3px solid white;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) translate(2px, -2px);
}

@keyframes scan-document {
  0%, 100% {
    top: 10px;
    opacity: 0.7;
  }
  50% {
    top: 115px;
    opacity: 0.9;
  }
}

@keyframes check-appear {
  0%, 40% {
    transform: translate(0, -50%) scale(0);
    opacity: 0;
  }
  50%, 90% {
    transform: translate(0, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(0, -50%) scale(0);
    opacity: 0;
  }
}

/* IMPROVED Reminder animation with clear bell icon */
.reminder-animation {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-container {
  position: absolute;
  width: 100px;
  height: 70px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.email-header {
  height: 16px;
  background: linear-gradient(to right, #74EAFF, #0D55FF);
}

.email-body {
  padding: 8px;
}

.email-line {
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 6px;
}

.bell-notification {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #74EAFF, #0D55FF);
  top: 35%;
  right: 30%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bell-animation 4s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(13, 85, 255, 0.3);
  z-index: 2;
}

.bell-icon {
  width: 24px;
  height: 24px;
  color: white;
}

@keyframes bell-animation {
  0%, 100% {
    transform: translate(0, -50%) rotate(0deg);
  }
  10%, 30%, 50%, 70% {
    transform: translate(0, -50%) scale(1.1) rotate(5deg);
  }
  20%, 40%, 60% {
    transform: translate(0, -50%) scale(1.1) rotate(-5deg);
  }
  80% {
    transform: translate(0, -50%) scale(1);
  }
}

/* Integrations animation - STANDARDIZED SIZE */
.integration-animation {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-container {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.app-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #74EAFF, #00B5FF);
  border-radius: 8px;
  margin-bottom: 5px;
}

.app-name {
  font-size: 9px;
  font-weight: 600;
}

.connection-line {
  position: absolute;
  height: 4px;
  width: 60px;
  background: linear-gradient(to right, #74EAFF, #0D55FF);
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  animation: connect-pulse 3s ease-in-out infinite;
}

.first-app {
  top: 50%;
  left: 50%;
  transform: translate(-70px, -50%);
}

.second-app {
  top: 50%;
  left: 50%;
  transform: translate(10px, -50%);
  background: white;
}

.second-app .app-icon {
  background: linear-gradient(45deg, #00B5FF, #0D55FF);
}

@keyframes connect-pulse {
  0%, 100% {
    opacity: 0.5;
    height: 4px;
  }
  50% {
    opacity: 1;
    height: 6px;
  }
}

/* Pricing animation - STANDARDIZED SIZE */
.pricing-animation {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card {
  position: absolute;
  width: 60px;
  height: 90px;
  background: white;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.price-card:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-80px, -50%) rotate(-5deg);
  animation: float-card 6s ease-in-out infinite;
}

.price-card:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-25px, -55%);
  height: 100px;
  width: 70px;
  z-index: 1;
  border-top: 4px solid #0D55FF;
  animation: float-card-center 6s ease-in-out infinite 0.2s;
}

.price-card:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(30px, -50%) rotate(5deg);
  animation: float-card-right 6s ease-in-out infinite 0.4s;
}

.price-header {
  height: 6px;
  width: 30px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.price-amount {
  height: 12px;
  width: 40px;
  background: linear-gradient(to right, #74EAFF, #0D55FF);
  border-radius: 6px;
  margin-bottom: 6px;
}

.price-feature {
  height: 4px;
  width: 30px;
  background: #e2e8f0;
  border-radius: 2px;
  margin-bottom: 4px;
}

@keyframes float-card {
  0%, 100% {
    transform: translate(-80px, -50%) translateY(0) rotate(-5deg);
  }
  50% {
    transform: translate(-80px, -50%) translateY(-8px) rotate(-5deg);
  }
}

@keyframes float-card-center {
  0%, 100% {
    transform: translate(-25px, -55%) translateY(0);
  }
  50% {
    transform: translate(-25px, -55%) translateY(-10px);
  }
}

@keyframes float-card-right {
  0%, 100% {
    transform: translate(30px, -50%) translateY(0) rotate(5deg);
  }
  50% {
    transform: translate(30px, -50%) translateY(-8px) rotate(5deg);
  }
}
.hover-scale {
  transition: transform 0.6s ease-in-out !important;
}
.hover-scale:hover {
  transform: scale(1.03) !important;
}

.email-animation {
  width: 100%;
  max-width: 650px;
  perspective: 1000px;
}

.email-animation .notification-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--danger);
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  transform: scale(0);
  animation: popIn 0.5s ease-out 1.5s forwards;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.email-animation .email {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transform-origin: center top;
  animation: appearEmail 1s ease-out forwards;
  position: relative;
  border: 1px solid var(--border);
}

.email-animation .email-header-text {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.email-animation .logo {
  background: linear-gradient(90deg, var(--primary-light), var(--primary-mid), var(--primary));
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.email-animation .email-info {
  flex-grow: 1;
}

.email-animation .email-subject {
  font-weight: bold;
  color: var(--foreground);
  font-size: 16px;
  margin-bottom: 4px;
}

.email-animation .email-meta {
  display: flex;
  font-size: 12px;
  color: var(--muted);
}

.email-animation .meta-item {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.email-animation .meta-item:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 5px;
}

.email-animation .email-body {
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 25px;
}

.email-animation .email-body p {
  margin-bottom: 15px;
}

.email-animation .email-body strong {
  color: var(--primary);
}

.email-animation .case-status {
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--danger);
  padding: 15px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.email-animation .status-pulse {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--danger);
  border-radius: 50%;
}

.email-animation .status-pulse:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--danger);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.8;
}

.email-animation .status-text {
  margin-left: 25px;
  font-weight: 500;
  color: var(--danger);
}

.email-animation .action-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-mid), var(--primary));
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(13, 85, 255, 0.2);
  animation: pulseButton 2s infinite;
}

.email-animation .action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 85, 255, 0.3);
}

.email-animation .doc-row {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background-color: rgba(13, 85, 255, 0.05);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  position: relative;
}

.email-animation .doc-row:nth-child(1) {
  animation: slideIn 0.5s ease-out 0.3s both;
}

.email-animation .doc-row:nth-child(2) {
  animation: slideIn 0.5s ease-out 0.6s both;
}

.email-animation .doc-row:nth-child(3) {
  animation: slideIn 0.5s ease-out 0.9s both;
}

.email-animation .doc-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(13, 85, 255, 0.1);
  border-radius: 8px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.email-animation .doc-info {
  flex-grow: 1;
}

.email-animation .doc-name {
  font-weight: 500;
  margin-bottom: 2px;
}

.email-animation .doc-status {
  font-size: 12px;
  color: var(--muted);
}

.email-animation .status-badge {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.email-animation .status-missing {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.email-animation .email-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@keyframes appearEmail {
  0% {
    opacity: 0;
    transform: translateY(20px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulseButton {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(13, 85, 255, 0.2);
  }
  50% {
    box-shadow: 0 4px 18px rgba(13, 85, 255, 0.4);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}



.blurb-container {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 5px;
  flex-wrap: wrap;
}
.blurb-container .blurb {
  border-radius: 5px;
  border: 1px solid rgba(13, 85, 255, 0.1);
  width: calc(50% - 5px);
  background: #fff;
  display: flex;
  padding: 10px;
  flex: 1 1 calc(50% - 10px);
  box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}
.blurb-container-large {
  padding: 5px;
}
.blurb-large {
  background: rgba(13, 85, 255, 0.05);
  border-radius: 5px;
  border: 1px solid rgba(13, 85, 255, 0.3);
  width: 100%;
  padding: 10px;
}
.blurb-container .blurb-content {
  padding-left: 10px;
  padding-right: 10px;
  flex-grow: 1;
}
.blurb-container .blurb-icon {
  background: rgba(13, 85, 255, 0.3);
  border-radius: 15px;
  padding: 5px;
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blurb-container .blurb-icon svg {
  color: rgba(13, 85, 255, 1);
}
.blurb-title {
  font-size: 0.75rem;
  font-weight: 500;
}
.blurb-container .blurb-stats {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  font-size: 0.6rem;
  line-height: 0.875rem;
  gap: 5px;
}
.blurb-stats div {
  width: calc(50% - 5px);
}
.blurb-container .progress-bar-container {
  background: rgba(13, 85, 255, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 0.75rem;
  border-radius: 1000px;
}

.blurb-document {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 5px;
  background: #e4ecff8a;
  border: 1px solid rgba(13, 85, 255, 0.1);
  padding: 6px 12px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.blurb-document:hover, .blurb-container .blurb:hover {
  border: 1px solid rgba(13, 85, 255, 0.3);
  cursor: pointer;
}
.blurb-document .document-name {
  width: 80%;
  font-weight: 500;
  font-size: 0.9rem;
}
.blurb-document .document-status {
  width: 20%;
}
.document-status {
  padding: 3px 8px;
  font-size: 0.6rem;
  border-radius: 1000px;
  text-align: center;
}
.document-status.green {
  color: #065f46;
  background: #d1fae5;
}
.document-status.red {
  color: #991b1b;
  background: #fee2e2;
}
.document-status.orange {
  color: #9a3412;
  background: #ffedd5;
}

.progress-bar {
  background: rgba(13, 85, 255, 1);
  height: calc(0.75rem - 2px);
  border-radius: 1000px;
}
.progress-100 {
  width: 100%;
}
.progress-75 {
  width: 75%;
}
.progress-50 {
  width: 50%;
}
.progress-20 {
  width: 20%;
}

@keyframes smallPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.3;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .blurb-container {
    flex-direction: column;
    gap: 10px;
  }

  .blurb-container .blurb {
    width: 100%;
  }

  .blurb-document {
    flex-direction: column;
    align-items: flex-start;
  }

  .blurb-document .document-name,
  .blurb-document .document-status {
    width: 100%;
    margin-top: 5px;
  }
}


/* Utility Classes with docval- prefix */
.docval-flex {
  display: flex;
}

@media (max-width: 768px) {
  .docval-flex-buttons {
    flex-direction: column !important;
  }
}

.docval-items-center {
  align-items: center;
}

.docval-items-start {
  align-items: flex-start;
}

.docval-justify-between {
  justify-content: space-between;
}

.docval-justify-end {
  justify-content: flex-end;
}

.docval-gap-2 {
  gap: 0.5rem;
}

.docval-gap-3 {
  gap: 0.75rem;
}

.docval-gap-4 {
  gap: 1rem;
}

.docval-mr-2 {
  margin-right: 0.5rem;
}

.docval-mb-2 {
  margin-bottom: 0.5rem;
}

.docval-mb-4 {
  margin-bottom: 1rem;
}

.docval-mt-2 {
  margin-top: 0.5rem;
}

.docval-mt-4 {
  margin-top: 1rem;
}

.docval-ml-2 {
  margin-left: 0.5rem;
}

.docval-p-4 {
  padding: 1rem;
}

.docval-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.docval-text-sm {
  font-size: 0.875rem;
}

.docval-text-xs {
  font-size: 0.75rem;
}

.docval-text-lg {
  font-size: 1.125rem;
}

.docval-font-medium {
  font-weight: 500;
}

.docval-text-left {
  text-align: left;
}

.docval-text-right {
  text-align: right;
}

.docval-text-white {
  color: #fff;
}

.docval-text-green-500 {
  color: #10b981;
}

.docval-text-blue-500 {
  color: #3b82f6;
}

.docval-text-purple-500 {
  color: #8b5cf6;
}

.docval-text-red-500 {
  color: #ef4444;
}

.docval-text-gray-500 {
  color: #6b7280;
}

.docval-text-muted {
  color: #6b7280;
}

.docval-cursor-pointer {
  cursor: pointer;
}

.docval-underline {
  text-decoration: underline;
}

.docval-w-full {
  width: 100%;
}

.docval-h-4 {
  height: 1rem;
}

.docval-w-4 {
  width: 1rem;
}

.docval-h-5 {
  height: 1.25rem;
}

.docval-w-5 {
  width: 1.25rem;
}

.docval-overflow-x-auto {
  overflow-x: auto;
}

/* Components with docval- prefix */
.docval-dashboard {
  max-width: 1200px;
  margin: 2rem auto;
  background-color: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.docval-header {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem;
}

.docval-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  margin-top: 1rem;
}

.docval-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  margin-bottom: 1rem;
}

.docval-card-content {
  padding: 1rem;
}

.docval-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.docval-badge-awaiting {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.docval-badge-complete {
  background-color: #d1fae5;
  color: #047857;
}

.docval-badge-contract {
  background-color: #d1fae5;
  color: #047857;
}

.docval-badge-project {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.docval-badge-tech {
  background-color: #f3e8ff;
  color: #7e22ce;
}

.docval-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.docval-btn-primary {
  background-color: #1e3a8a;
  color: #fff;
  border: none;
}

.docval-btn-primary:hover {
  background-color: #1e40af;
}

.docval-btn-outline {
  background-color: transparent;
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

.docval-btn-outline:hover {
  background-color: #eff6ff;
}

.docval-btn-ghost {
  background-color: transparent;
  border: none;
  color: #6b7280;
  padding: 0.25rem;
}

.docval-btn-ghost:hover {
  background-color: #f3f4f6;
}

.docval-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.docval-svg-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.docval-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.docval-th {
  padding: 0.5rem;
  text-align: left;
  font-weight: 500;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
}

.docval-td {
  padding: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.docval-tr:last-child .docval-td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .docval-responsive-table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
}

/* Workflow Builder Styles with prefixed classes */
.wfbuilder-container {
  background-color: white;
  padding: 24px;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.wfbuilder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wfbuilder-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wfbuilder-header-icon {
  color: #0D55FF;
}

.wfbuilder-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.wfbuilder-button-group {
  display: flex;
  gap: 8px;
}

.wfbuilder-button {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.wfbuilder-button-outline {
  background-color: transparent;
  border: 1px solid #E2E8F0;
  color: #1A202C;
}

.wfbuilder-button-primary {
  background-color: #0D55FF;
  border: 1px solid #0D55FF;
  color: white;
}

.wfbuilder-workflow {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wfbuilder-step-connector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wfbuilder-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wfbuilder-line {
  flex: 1;
  height: 2px;
  border-bottom: 2px dashed;
}

.wfbuilder-circle-green {
  background-color: #10B981;
  color: white;
}

.wfbuilder-circle-red {
  background-color: #EF4444;
  color: white;
}

.wfbuilder-line-green {
  border-color: #10B981;
}

.wfbuilder-line-red {
  border-color: #EF4444;
}

.wfbuilder-step-text {
  font-size: 14px;
  font-weight: 500;
}

.wfbuilder-step-container {
  margin-left: 16px;
  padding-left: 32px;
  border-left: 2px dashed #E2E8F0;
  position: relative;
}

.wfbuilder-step-number {
  position: absolute;
  top: 0;
  left: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}

.wfbuilder-step-content {
  padding: 16px;
  border-radius: 8px;
}

.wfbuilder-blue {
  background-color: #EFF6FF;
  border: 1px solid #BFDBFE;
}

.wfbuilder-green {
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
}

.wfbuilder-purple {
  background-color: #F5F3FF;
  border: 1px solid #DDD6FE;
}

.wfbuilder-number-blue {
  background-color: #3B82F6;
}

.wfbuilder-number-green {
  background-color: #10B981;
}

.wfbuilder-number-purple {
  background-color: #8B5CF6;
}

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

.wfbuilder-step-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wfbuilder-step-header-icon {
  width: 20px;
  height: 20px;
}

.wfbuilder-blue-icon {
  color: #3B82F6;
}

.wfbuilder-green-icon {
  color: #10B981;
}

.wfbuilder-purple-icon {
  color: #8B5CF6;
}

.wfbuilder-step-header-title {
  font-weight: 500;
  margin: 0;
}

.wfbuilder-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background-color: white;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  margin-bottom: 8px;
}

.wfbuilder-item:last-child {
  margin-bottom: 0;
}

.wfbuilder-item-icon {
  width: 16px;
  height: 16px;
}

.wfbuilder-item-text {
  font-size: 14px;
  margin: 0;
}

.wfbuilder-add-step {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.wfbuilder-add-button {
  padding: 8px 16px;
  border: 1px dashed #CBD5E0;
  border-radius: 6px;
  background-color: transparent;
  font-size: 14px;
  cursor: pointer;
}

.wfbuilder-add-button:hover {
  background-color: #F7FAFC;
}

.wfbuilder-item-with-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wfbuilder-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wfbuilder-item-details {
  font-size: 12px;
  color: #718096;
}

.af-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.af-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Card styles */
.af-card {
  background-color: #fff;
  /* border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; */
  overflow: hidden;
}

.af-card-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.af-space-y-4 > * + * {
  margin-top: 1rem;
}

.af-mb-4 {
  margin-bottom: 1rem;
}

/* Flex utilities */
.af-flex {
  display: flex;
}

.af-items-center {
  align-items: center;
}

.af-justify-between {
  justify-content: space-between;
}

.af-gap-2 {
  gap: 0.5rem;
}

.af-gap-3 {
  gap: 0.75rem;
}

/* Section styles */
.af-section {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

.af-section-slate {
  background-color: #f8fafc;
}

.af-section-white {
  background-color: #ffffff;
}

/* Text styles */
.af-text-sm {
  font-size: 0.875rem;
}

.af-text-xs {
  font-size: 0.75rem;
}

.af-font-medium {
  font-weight: 500;
}

.af-text-muted {
  color: #6b7280;
}

/* Button styles */
.af-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  background-color: #fff;
  color: #374151;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.af-button:hover {
  background-color: #f9fafb;
}

/* Circle indicator styles */
.af-circle-indicator {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.af-circle-green {
  background-color: #dcfce7;
  color: #16a34a;
}

.af-circle-amber {
  background-color: #fef3c7;
  color: #d97706;
}

.af-circle-slate {
  background-color: #f1f5f9;
  color: #475569;
}

/* Email content styles */
.af-email-field {
  margin-bottom: 0.75rem;
}

.af-email-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}

.af-email-content {
  padding: 0.75rem;
  background-color: #f8fafc;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.af-email-button {
  display: inline-block;
  background-color: #0D55FF;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  text-align: center;
  text-decoration: none;
}

.af-p {
  margin-bottom: 0.5rem;
}

.af-text-center {
  text-align: center;
}

.af-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Icon styles - simplified versions */
.af-icon {
  width: 20px;
  height: 20px;
  stroke: #0D55FF;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Flex column */
.af-flex-col {
  display: flex;
  flex-direction: column;
}

@media (max-width: 640px) {
  .af-container {
    padding: 0 12px;
  }
}

ul.number-bullets {
  list-style-type: none;
  padding-left:20px;
  padding-right:20px;
}
li.number-bullet {
  display:flex;
  gap:10px;
  align-items:center;
}
li.number-bullet > .number {
  display:flex;
  align-items:center;
  justify-content:center;
  height:25px;
  width:25px;
  text-align:center;
  background:#2663ec;
  color:white;
  border-radius:1000px;
  margin-bottom:10px;
  margin-top:10px;
}
ul.number-bullets > hr {
  color:rgba(0,0,0,0.1);
}

.size-6 {
  height: 1.5rem;
  width: 1.5rem;
}

.feature-card .et_pb_text_inner {
  height: 100%;
}

/* Client Portal CSS with 'portal-' prefix */
.portal-container {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.portal-browser-chrome {
  background-color: rgba(241, 245, 249, 0.8);
  padding: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}

.portal-browser-buttons {
  display: flex;
  margin-right: 1rem;
  gap: 0.375rem;
}

.portal-browser-button {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.portal-browser-button-red {
  background-color: #f87171;
}

.portal-browser-button-yellow {
  background-color: #facc15;
}

.portal-browser-button-green {
  background-color: #4ade80;
}

.portal-url-bar {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  text-align: center;
  overflow: hidden;
  color: #64748b;
}

.portal-content {
  background-color: white;
  padding: 1.5rem;
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.portal-branding {
  display: flex;
  align-items: center;
}

.portal-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: #0D55FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.portal-company-info {
  margin-left: 0.75rem;
}

.portal-company-name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.portal-company-domain {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
}

.portal-domain-icon {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
}

.portal-nav {
  display: flex;
  gap: 0.75rem;
}

.portal-nav-item {
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.portal-nav-item:hover {
  transform: scale(1.05);
}

.portal-nav-item:active {
  transform: scale(0.95);
}

.portal-nav-item-secondary {
  background-color: rgba(13, 85, 255, 0.1);
  color: #0D55FF;
}

.portal-nav-item-primary {
  background-color: #0D55FF;
  color: white;
}

.portal-nav-icon {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.375rem;
}

.portal-welcome {
  margin-bottom: 1.5rem;
}

.portal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portal-description {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.portal-documents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .portal-documents {
    grid-template-columns: 1fr 1fr;
  }
}

.portal-document-large {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .portal-document-large {
    grid-column: span 2;
  }
}

.portal-document-item {
  border: 1px solid rgba(13, 85, 255, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: rgba(13, 85, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.portal-document-icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(13, 85, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-document-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #0D55FF;
}

.portal-document-title {
  font-weight: 500;
  margin-top: 0.5rem;
}

.portal-document-status {
  font-size: 0.75rem;
  color: #0D55FF;
  margin-top: 0.25rem;
}

.portal-document-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(13, 85, 255, 0.15);
}

.portal-document-row-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(13, 85, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D55FF;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.portal-document-row-content {
  flex: 1;
}

.portal-document-row-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: #333;
}

.portal-document-row-subtitle {
  font-size: 0.75rem;
  color: #64748b;
}

.portal-document-row-action {
  margin-left: auto;
  flex-shrink: 0;
}

.portal-document-row-button {
  background-color: #0D55FF;
  color: white;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  box-shadow: 0 2px 5px rgba(13, 85, 255, 0.3);
}

.portal-document-row-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(13, 85, 255, 0.4);
}

.portal-document-row-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(13, 85, 255, 0.3);
}

.portal-document-note {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(13, 85, 255, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem;
}

.portal-document-note-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.portal-document-note-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #0D55FF;
  margin-right: 0.5rem;
}

.portal-document-note-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0D55FF;
}

.portal-document-note-text {
  font-size: 0.825rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.portal-document-note-footer {
  display: flex;
  justify-content: flex-end;
}

.portal-upload-button {
  background-color: #0D55FF;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(13, 85, 255, 0.3);
  border: none;
}

.portal-upload-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(13, 85, 255, 0.4);
}

.portal-upload-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(13, 85, 255, 0.3);
}

.portal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(229, 231, 235, 0.3);
}

.portal-status {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #64748b;
}

.portal-status-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #22c55e;
  margin-right: 0.375rem;
}

.portal-last-updated {
  font-size: 0.75rem;
  color: #64748b;
}

.et_mobile_menu {
  width: 70vw;
  top: 5vh !important;
  left: -15vw !important;
  overflow-y: scroll;
  max-height:80vh;
}

.card-header .title {
  font-size: 0.875rem; 
  font-weight: 400;
  text-align: center;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis; 
  margin-left: 1rem; 
  flex-grow: 1;
}

@media (min-width: 981px) {
  .dtq-logo-grid__item img {
    margin-left: 0 !important;
  }
}


