@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Color Palette */
  --bg-gradient: linear-gradient(135deg, #090714 0%, #130d2a 50%, #05030a 100%);
  --panel-bg: rgba(20, 16, 38, 0.6);
  --panel-border: rgba(255, 255, 255, 0.08);
  --panel-hover-border: rgba(255, 255, 255, 0.16);
  
  --primary: #8a2be2;
  --primary-glow: rgba(138, 43, 226, 0.4);
  --secondary: #00f2fe;
  --secondary-glow: rgba(0, 242, 254, 0.3);
  --accent: #ff007f;
  
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  
  --success: #00e676;
  --warning: #ffb300;
  --danger: #ff1744;
  --info: #00b0ff;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Glassmorphism Classes */
.glass {
  background: var(--panel-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.glass-interactive:hover {
  border-color: var(--panel-hover-border);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6), 0 0 15px var(--primary-glow);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* --- LOGIN PORTAL --- */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  position: relative;
  z-index: 10;
}

/* Decorative Background Glows */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
}
.glow-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-glow);
  top: 10%;
  left: 15%;
}
.glow-2 {
  width: 450px;
  height: 450px;
  background: var(--secondary-glow);
  bottom: 10%;
  right: 15%;
}

.login-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.logo-section {
  margin-bottom: 30px;
}

.logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
  font-family: var(--font-heading);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}
.logo-text span {
  background: linear-gradient(to right, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 5px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.input-wrapper {
  position: relative;
}

.input-wrapper svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.form-control {
  width: 100%;
  padding: 14px 15px 14px 45px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
  box-shadow: 0 0 15px var(--secondary-glow);
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), #a24eff);
  border: none;
  border-radius: 10px;
  color: white;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
  transition: var(--transition);
  margin-top: 10px;
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(138, 43, 226, 0.6);
  background: linear-gradient(135deg, #993bf2, #b266ff);
}

.error-message {
  color: var(--danger);
  font-size: 13px;
  margin-top: 15px;
  display: none;
  background: rgba(255, 23, 68, 0.1);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 23, 68, 0.2);
}

/* --- MAIN DASHBOARD APP LAYOUT --- */
.app-container {
  display: none; /* Shown after login */
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.sidebar {
  position: fixed;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 260px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.main-content {
  margin-left: 300px;
  padding: 20px 40px 40px 20px;
  min-height: 100vh;
}

/* Sidebar Logo & Profile */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-left: 10px;
}

.sidebar-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.sidebar-logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 30px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.client-info h4 {
  font-size: 14px;
  font-weight: 600;
}

.client-info p {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Navigation Links */
.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-item button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 15px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.nav-item button svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: var(--transition);
}

.nav-item button:hover,
.nav-item.active button {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.nav-item.active button {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 242, 254, 0.05));
  border-left: 3px solid var(--secondary);
  padding-left: 12px;
}

.nav-item.active button svg {
  color: var(--secondary);
  opacity: 1;
}

.sidebar-footer {
  margin-top: auto;
}

.btn-logout {
  width: 100%;
  background: rgba(255, 23, 68, 0.08);
  border: 1px solid rgba(255, 23, 68, 0.15);
  color: #ff4d6d;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-logout:hover {
  background: rgba(255, 23, 68, 0.15);
  border-color: rgba(255, 23, 68, 0.3);
}

/* Header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-top: 10px;
}

.header-title h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.header-title p {
  color: var(--text-secondary);
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.date-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tab Panels */
.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- OVERVIEW TAB --- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

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

.metric-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.trend-up {
  color: var(--success);
}
.trend-down {
  color: var(--danger);
}

/* Chart and Activity Grid */
.charts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .charts-grid {
    grid-template-columns: 1fr;
  }
}

.chart-card {
  padding: 24px;
}

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

.chart-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.chart-container {
  position: relative;
  height: 300px;
  width: 100%;
}

.platform-breakdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.platform-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.platform-name {
  font-weight: 500;
  font-size: 14px;
}

.platform-bar-container {
  flex-grow: 1;
  margin: 0 15px;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.platform-bar {
  height: 100%;
  border-radius: 4px;
}

.platform-percentage {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

/* --- APPROVAL QUEUE TAB --- */
.approval-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approval-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .approval-card {
    grid-template-columns: 1fr;
  }
}

.post-preview-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--panel-border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.post-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.post-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-platforms {
  display: flex;
  gap: 8px;
}

.platform-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--panel-border);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.post-schedule-time {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-caption {
  font-size: 14px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 15px;
  border-radius: 10px;
  white-space: pre-wrap;
  margin-bottom: 20px;
  max-height: 120px;
  overflow-y: auto;
}

.post-actions {
  display: flex;
  gap: 15px;
}

.btn-action {
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
}

.btn-approve {
  background: linear-gradient(135deg, var(--success), #00bfa5);
  color: #05140b;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.btn-approve:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.5);
}

.btn-reject {
  background: rgba(255, 23, 68, 0.1);
  border: 1px solid rgba(255, 23, 68, 0.3);
  color: #ff4d6d;
}

.btn-reject:hover {
  background: rgba(255, 23, 68, 0.2);
}

/* Feedback Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 500px;
  padding: 30px;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

/* --- CALENDAR TAB --- */
.calendar-wrapper {
  padding: 24px;
}

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

.calendar-title-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.calendar-title-nav h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.calendar-btn-nav {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--panel-border);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.calendar-btn-nav:hover {
  background: rgba(255, 255, 255, 0.1);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 0;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 110px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}

.calendar-day:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.calendar-day-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.calendar-day.current .calendar-day-num {
  color: var(--secondary);
}

.calendar-event {
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.calendar-event:hover {
  transform: scale(1.02);
}

/* Event types */
.event-approved {
  background: rgba(0, 230, 118, 0.15);
  border-left: 2px solid var(--success);
  color: #a7ffd0;
}
.event-pending {
  background: rgba(255, 179, 0, 0.15);
  border-left: 2px solid var(--warning);
  color: #ffe699;
}
.event-changes {
  background: rgba(255, 23, 68, 0.15);
  border-left: 2px solid var(--danger);
  color: #ffb3c1;
}

/* --- ANALYTICS TAB --- */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .analytics-grid {
    grid-template-columns: 1fr;
  }
}

.analytics-card {
  padding: 24px;
}

/* Top Posts list */
.top-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.top-post-thumb {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
}

.top-post-info {
  flex-grow: 1;
}

.top-post-caption {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

.top-post-stats {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-secondary);
}

.top-post-stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-post-perf {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--success);
  font-size: 14px;
}

/* --- RESOURCES & UPLOADS TAB --- */
.resource-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }
}

.upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.01);
}

.upload-zone:hover {
  border-color: var(--secondary);
  background: rgba(0, 242, 254, 0.03);
}

.upload-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.upload-text h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.upload-text p {
  color: var(--text-secondary);
  font-size: 12px;
}

.upload-input {
  display: none;
}

.uploaded-files-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uploaded-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 13px;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-icon {
  color: var(--secondary);
}

.file-name {
  font-weight: 500;
}

.file-size {
  color: var(--text-muted);
  font-size: 11px;
}

.file-status {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0, 176, 255, 0.1);
  color: var(--info);
}

.notes-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.textarea-control {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
  transition: var(--transition);
}

.textarea-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.toast {
  padding: 15px 25px;
  border-radius: 10px;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideInRight 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-success {
  background: linear-gradient(135deg, #00bfa5, #00e676);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.toast-error {
  background: linear-gradient(135deg, #ff1744, #ff5252);
  border: 1px solid rgba(255, 23, 68, 0.3);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
