/**
 * Simple Timeline Styles
 * Clean, vertical timeline with collapsible groups
 * Version: 2.0.0 (Simplified Rewrite)
 * Author: SeaDev LTD
 */

/* ============================================
   TIMELINE CONTAINER
   ============================================ */

.simple-timeline {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  min-height: 400px;
}

/* ============================================
   YEAR AXIS
   ============================================ */

.timeline-axis {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  display: block; /* Changed from flex for absolute positioning */
  height: 60px;
  padding: 0;
  border-bottom: 2px solid #e9ecef;
  z-index: 100;
}

.year-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  transform: translateX(0); /* Position at start, not center */
}

.year-label {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.year-marker.current .year-label {
  color: var(--seadev-primary, #4154f1);
  font-weight: 700;
  font-size: 16px;
}

.year-line {
  width: 2px;
  height: 20px;
  background-color: #dee2e6;
  transition: all 0.3s ease;
}

.year-marker.current .year-line {
  height: 30px;
  background-color: var(--seadev-primary, #4154f1);
  box-shadow: 0 0 10px rgba(65, 84, 241, 0.3);
}

/* ============================================
   CURRENT DATE INDICATOR
   ============================================ */

.current-date-indicator {
  position: absolute;
  top: 58px; /* Align perfectly with axis bottom */
  bottom: 0;
  left: var(--today-offset, 0%);
  /* FIXED: Removed conflicting margin-left to prevent positioning conflicts */
  width: 4px; /* Slightly thicker for better visibility */
  background: linear-gradient(to bottom, 
    var(--seadev-primary, #4154f1) 0%, 
    var(--seadev-primary, #4154f1) 30%, 
    rgba(65, 84, 241, 0.8) 70%, 
    rgba(65, 84, 241, 0.3) 100%);
  transform: translateX(-50%);
  z-index: 15; /* Higher z-index to appear above timeline content */
  pointer-events: none;
  box-shadow: 
    0 0 8px rgba(65, 84, 241, 0.4),
    0 0 16px rgba(65, 84, 241, 0.2);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.current-date-indicator::before {
  content: '';
  position: absolute;
  top: -10px; /* Positioned to align with axis line */
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--seadev-primary, #4154f1), var(--seadev-primary, #4154f1));
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 
    0 0 0 2px rgba(65, 84, 241, 0.3),
    0 4px 12px rgba(65, 84, 241, 0.4),
    0 0 20px rgba(65, 84, 241, 0.2);
  z-index: 20;
}

/* Pulsing animation for the indicator dot */
.current-date-indicator::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: rgba(65, 84, 241, 0.3);
  border-radius: 50%;
  animation: todayPulse 2s ease-in-out infinite;
  z-index: 18;
}

@keyframes todayPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) scale(1.8);
    opacity: 0.2;
  }
}

.date-label {
  position: absolute;
  top: -48px; /* Position above the indicator dot */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--seadev-primary, #4154f1), var(--seadev-primary, #4154f1));
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 
    0 4px 12px rgba(65, 84, 241, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  z-index: 25;
  letter-spacing: 0.3px;
}

.date-label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 6px solid var(--seadev-primary, #4154f1);
  filter: drop-shadow(0 2px 4px rgba(65, 84, 241, 0.2));
}

/* ============================================
   TIMELINE GROUPS
   ============================================ */

.timeline-groups {
  position: relative;
  width: 100%;
  margin-top: 90px;
}

.timeline-group {
  margin-bottom: 40px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: visible;
}

.timeline-group:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Group Header */
.group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.group-header:hover {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-color: var(--seadev-primary, #4154f1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 84, 241, 0.15);
}

.group-header:focus {
  outline: 2px solid var(--seadev-primary, #4154f1);
  outline-offset: 2px;
}

.group-header:active {
  transform: translateY(0);
}

.group-icon {
  font-size: 14px;
  color: #6c757d;
  transition: transform 0.3s ease;
  min-width: 14px;
}

.group-badge {
  font-size: 18px;
}

.group-title {
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

.group-count {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

/* Status-specific styling */
.timeline-group[data-status="ongoing"] .group-header {
  border-left: 4px solid #28a745;
}

.timeline-group[data-status="completed"] .group-header {
  border-left: 4px solid var(--seadev-primary, #4154f1);
}

/* Group Content */
.group-content {
  position: relative;
  overflow: visible;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding: 0 0 16px 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.3s ease,
              margin 0.3s ease;
}

.group-content.expanded {
  max-height: none;
  overflow: visible;
  opacity: 1;
  margin-top: 20px;
  padding: 20px 10px;
}

.group-content.collapsed {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding: 0;
}

/* ============================================
   TIMELINE CLIENTS
   ============================================ */

.timeline-client {
  position: absolute;
  left: 20px;
  min-width: 100px;
  min-height: 64px;
  height: auto;
  max-width: calc(100% - 40px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.timeline-client:last-child {
  margin-bottom: 0;
}

.timeline-client.hovered {
  z-index: 50;
  transform: translateY(-4px);
}

/* Client Card */
.client-card {
  position: relative;
  width: 100%;
  height: 95%;
  min-width: 100px;
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  overflow: visible;
  display: flex;
  flex-direction: column;
  contain: layout style;
}

.timeline-client:hover .client-card,
.timeline-client:focus-within .client-card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Client Main Info */
.client-main {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: nowrap;
  min-width: 0;
}

.client-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  flex-grow: 0;
  background: white;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 15;
  overflow: visible;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 16;
  display: block;
}

.client-info {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.client-name {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-period {
  margin: 0 0 4px 0;
  font-size: 13px;
  opacity: 0.9;
  white-space: nowrap;
}

.client-duration {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-weight: 500;
}

/* Ongoing Pulse */
.ongoing-pulse {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
  }
  50% { 
    opacity: 0.5; 
    transform: scale(1.3); 
  }
}

/* Client Details - Hidden, shown in modal instead */
.client-details {
  display: none;
}

.client-description {
  margin: 0 0 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.client-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.meta-item i {
  font-size: 14px;
}

.client-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.client-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.client-link i {
  font-size: 12px;
}

/* ============================================
   MODAL DIALOG SYSTEM
   ============================================ */

/* Modal Overlay */
.timeline-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
  animation: fadeIn 0.3s ease;
}

.timeline-modal-overlay.active {
  display: block;
}

/* Modal Container */
.timeline-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.timeline-modal.active {
  display: block;
}

/* Modal Header */
.timeline-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, var(--seadev-primary, #4154f1), var(--seadev-accent, #ee6c20));
  color: white;
  position: relative;
}

.timeline-modal-logo {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.timeline-modal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-modal-title-section {
  flex: 1;
  min-width: 0;
}

.timeline-modal-title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.timeline-modal-period {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.timeline-modal-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.timeline-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.timeline-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Modal Body */
.timeline-modal-body {
  padding: 24px;
  max-height: calc(80vh - 140px);
  overflow-y: auto;
  color: #333;
}

.timeline-modal-section {
  margin-bottom: 24px;
}

.timeline-modal-section:last-child {
  margin-bottom: 0;
}

.timeline-modal-section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6c757d;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.timeline-modal-description {
  font-size: 15px;
  line-height: 1.6;
  color: #495057;
  margin: 0;
}

.timeline-modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.timeline-modal-meta-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.timeline-modal-meta-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--seadev-primary, #4154f1), var(--seadev-primary, #4154f1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.timeline-modal-meta-content {
  flex: 1;
  min-width: 0;
}

.timeline-modal-meta-label {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.timeline-modal-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  margin: 0;
}

.timeline-modal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--seadev-primary, #4154f1), var(--seadev-primary, #4154f1));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.timeline-modal-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 84, 241, 0.4);
  color: white;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to { 
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Scrollbar Styling */
.timeline-modal-body::-webkit-scrollbar {
  width: 8px;
}

.timeline-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.timeline-modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 4px;
}

.timeline-modal-body::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .timeline-modal {
    width: 95%;
    max-height: 90vh;
  }
  
  .timeline-modal-header {
    padding: 20px;
  }
  
  .timeline-modal-logo {
    width: 56px;
    height: 56px;
  }
  
  .timeline-modal-title {
    font-size: 20px;
  }
  
  .timeline-modal-body {
    padding: 20px;
    max-height: calc(90vh - 120px);
  }
  
  .timeline-modal-meta-grid {
    grid-template-columns: 1fr;
  }
}

/* Handle very narrow timeline clients */
.timeline-client[style*="width: 2%"],
.timeline-client[style*="width: 3%"],
.timeline-client[style*="width: 4%"],
.timeline-client[style*="width: 5%"],
.timeline-client[style*="width: 6%"],
.timeline-client[style*="width: 7%"] {
  min-width: 100px !important;
}

/* Compact layout for narrow cards */
@media (min-width: 769px) {
  .timeline-client[style*="width"] {
    min-width: max(100px, var(--card-width, 6%)) !important;
  }
}

/* Ensure narrow cards display properly */
.timeline-client.narrow-card .client-name {
  font-size: 14px;
}

.timeline-client.narrow-card .client-details {
  font-size: 11px;
}

/* ============================================
   ERROR STATE
   ============================================ */

.timeline-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #6c757d;
  text-align: center;
}

.timeline-error i {
  font-size: 48px;
  margin-bottom: 16px;
  color: #dc3545;
}

.timeline-error p {
  font-size: 16px;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .simple-timeline {
    padding: 30px 15px;
  }
  
  .timeline-axis {
    left: 15px;
    right: 15px;
  }
  
  .timeline-client {
    min-width: 80px;
    min-height: 120px;
    height: auto;
  }
  
  .client-card {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .simple-timeline {
    padding: 20px 10px;
  }
  
  .timeline-axis {
    height: 50px;
    left: 10px;
    right: 10px;
  }
  
  .year-label {
    font-size: 12px;
  }
  
  .year-marker.current .year-label {
    font-size: 14px;
  }
  
  /* Responsive today indicator adjustments */
  .current-date-indicator {
    top: 48px; /* Adjust for smaller axis height */
    /* FIXED: Removed conflicting margin-left for responsive design */
    width: 3px;
  }
  
  .current-date-indicator::before {
    width: 14px;
    height: 14px;
    border: 3px solid white;
  }
  
  .current-date-indicator::after {
    width: 14px;
    height: 14px;
  }
  
  .date-label {
    font-size: 11px;
    padding: 4px 8px;
    top: -42px;
  }
  
  .group-header {
    padding: 12px 15px;
  }
  
  .group-title {
    font-size: 16px;
  }
  
  .group-count {
    font-size: 12px;
    padding: 3px 8px;
  }
  
  .timeline-client {
    height: auto;
    min-height: 140px;
  }
  
  .client-main {
    flex-wrap: wrap;
  }
  
  .client-logo {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  
  .client-name {
    font-size: 14px;
  }
  
  .client-period {
    font-size: 12px;
  }
  
  .client-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .simple-timeline {
    padding: 15px 5px;
  }
  
  .timeline-axis {
    padding: 0 5px;
  }
  
  .year-label {
    font-size: 10px;
  }
  
  /* Mobile today indicator adjustments */
  .current-date-indicator {
    margin-left: 5px; /* Match smallest axis padding */
    width: 2px;
  }
  
  .current-date-indicator::before {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    top: -8px;
  }
  
  .current-date-indicator::after {
    width: 12px;
    height: 12px;
    top: -8px;
  }
  
  .date-label {
    font-size: 10px;
    padding: 3px 6px;
    top: -38px;
  }
  
  .date-label::after {
    border-width: 4px;
    border-top-width: 4px;
  }
  
  .group-header {
    padding: 10px;
  }
  
  .group-title {
    font-size: 14px;
  }
  
  .group-count {
    display: none;
  }
  
  .timeline-client {
    min-width: 70px;
  }
  
  .client-card {
    padding: 10px;
  }
  
  .client-name {
    font-size: 13px;
  }
  
  .client-description {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .simple-timeline {
    padding: 0;
  }
  
  .group-content {
    max-height: none !important;
    opacity: 1 !important;
    padding: 20px 10px !important;
  }
  
  .timeline-client {
    page-break-inside: avoid;
  }
  
  .current-date-indicator {
    display: none;
  }
  
  .ongoing-pulse {
    animation: none;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .current-date-indicator::after {
    animation: none !important;
  }
  
  .ongoing-pulse {
    animation: none !important;
  }
}

@media (prefers-contrast: high) {
  .group-header {
    border: 3px solid;
  }
  
  .client-card {
    border: 2px solid white;
  }
}

/* Focus visible for better keyboard navigation */
.group-header:focus-visible {
  outline: 3px solid var(--seadev-primary, #4154f1);
  outline-offset: 3px;
}

/* ============================================
   MODE SWITCHING SUPPORT
   ============================================ */

.mode-hidden {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

.mode-active {
  display: block !important;
  visibility: visible !important;
  position: relative !important;
  left: auto !important;
}

/* ============================================
   LOADING STATE
   ============================================ */

.timeline-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #6c757d;
}

.timeline-loading i {
  font-size: 32px;
  margin-bottom: 16px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.timeline-loading p {
  font-size: 14px;
  margin: 0;
}

/* ============================================
   ENHANCED VISUAL EFFECTS FOR TODAY INDICATOR
   ============================================ */

/* Add subtle hover effect for better user interaction */
.current-date-indicator:hover {
  box-shadow: 
    0 0 12px rgba(65, 84, 241, 0.6),
    0 0 24px rgba(65, 84, 241, 0.3);
  width: 5px;
}

/* Enhanced responsive behavior for very small screens */
@media (max-width: 480px) {
  .current-date-indicator {
    top: 45px;
    width: 2px;
  }
  
  .current-date-indicator::before {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    top: -8px;
  }
  
  .current-date-indicator::after {
    width: 12px;
    height: 12px;
    top: -8px;
  }
  
  .date-label {
    font-size: 10px;
    padding: 4px 8px;
    top: -42px;
  }
}

/* Edge case handling for indicator positioning */
.current-date-indicator.edge-left {
  transform: translateX(0%);
}

.current-date-indicator.edge-right {
  transform: translateX(-100%);
}
