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

@page {
  size: A4;
  margin: 0;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background: #f5f5f5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  padding: 20px 12px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-left: 1px solid rgba(66, 103, 178, 0.2);
  border-radius: 8px 0 0 8px;
}

.nav-title {
  font-size: 11px;
  font-weight: 700;
  color: #4267b2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(66, 103, 178, 0.2);
  text-align: center;
}

.nav-link {
  color: #4267b2;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(66, 103, 178, 0.1);
  color: #2d4a80;
}

.nav-link:active {
  background-color: rgba(66, 103, 178, 0.2);
}

.nav-separator {
  height: 1px;
  background: rgba(66, 103, 178, 0.2);
  margin: 12px 0;
}

.nav-view-modes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-btn {
  background: rgba(66, 103, 178, 0.1);
  color: #4267b2;
  border: 1px solid rgba(66, 103, 178, 0.3);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  text-align: center;
  flex: 1;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.nav-toggle-btn:hover {
  background-color: rgba(66, 103, 178, 0.2);
  color: #2d4a80;
  border-color: rgba(66, 103, 178, 0.5);
}

.nav-toggle-btn:active {
  background-color: rgba(66, 103, 178, 0.3);
}

.nav-toggle-btn.active {
  background-color: #4267b2;
  color: #fff;
  border-color: #4267b2;
}

.nav-toggle-btn.active:hover {
  background-color: #2d4a80;
  border-color: #2d4a80;
}

.container {
  width: 210mm;
  min-height: 297mm;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Single Column */
.left-column {
  width: 100%;
  padding: 25px 40px;
  background: #ffffff;
}

/* Remove Right Column */
.right-column {
  display: none;
}

/* Header Section */
.header {
  background: linear-gradient(135deg, #4267b2 0%, #2d4a80 100%);
  color: white;
  padding: 25px 40px;
  margin: -25px -40px 18px -40px;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.name {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.job-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
}

.contact-info {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.contact-icon {
  font-size: 11px;
  opacity: 0.9;
  flex-shrink: 0;
}

.contact-text {
  color: rgba(255, 255, 255, 0.95);
}

.contact-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.phone-link {
  cursor: pointer;
}

.contact-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 2px;
  font-weight: 300;
}

/* Section Titles */
.section-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 18px 0 12px 0;
  letter-spacing: 0.8px;
  color: #4267b2;
  scroll-margin-top: 80px;
}

.right-column .section-title {
  color: white;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

/* Summary */
.summary {
  font-size: 11.5px;
  line-height: 1.7;
  color: #2a2a2a;
  text-align: justify;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

/* Experience */
.experience-item {
  margin-bottom: 18px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3px;
}

.job-position {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.job-date {
  font-size: 11px;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.company-name {
  font-size: 12px;
  color: #4267b2;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.company-name a {
  color: #4267b2;
  text-decoration: none;
}

.company-name a:hover {
  text-decoration: underline;
}

.company-location {
  font-size: 10.5px;
  color: #666;
  float: right;
  letter-spacing: 0.01em;
}

.job-description {
  font-size: 11px;
  color: #2a2a2a;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: justify;
  letter-spacing: 0.01em;
  white-space: pre-line;
}

.job-section-title {
  font-size: 11px;
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 10px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.job-responsibilities,
.job-achievements,
.job-projects {
  list-style: none;
  padding-left: 0;
  font-size: 11px;
  color: #2a2a2a;
  line-height: 1.7;
  margin-bottom: 8px;
}

.job-responsibilities li,
.job-achievements li,
.job-project-item {
  padding-left: 16px;
  margin-bottom: 5px;
  position: relative;
  letter-spacing: 0.01em;
}

.job-responsibilities li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4267b2;
  font-weight: bold;
}

.job-achievements li:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 4px;
  height: 8px;
  border: solid #4267b2;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.job-project-item:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4267b2;
  font-weight: bold;
}

.project-link-text {
  color: #4267b2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.project-link-text:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.job-technologies-title {
  font-size: 11px;
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 10px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.job-technologies {
  font-size: 10.5px;
  color: #444;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.job-technologies .tech-separator {
  color: #999;
  margin: 0 4px;
}

/* Education */
.education-item {
  margin-bottom: 14px;
}

.degree {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.school {
  font-size: 11px;
  color: #4267b2;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.school a {
  color: #4267b2;
  text-decoration: none;
}

.school a:hover {
  text-decoration: underline;
}

.education-date {
  font-size: 10.5px;
  color: #555;
  float: right;
  letter-spacing: 0.01em;
}

.school-location {
  font-size: 10.5px;
  color: #666;
  float: right;
  clear: right;
  letter-spacing: 0.01em;
}

/* Recent Courses & Certifications Section */
.courses-certifications-item {
  margin-bottom: 14px;
}

.courses-certifications-name {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.courses-certifications-name a {
  color: #1a1a1a;
  text-decoration: none;
  flex: 1;
}

.courses-certifications-name a:hover {
  text-decoration: underline;
}

.courses-certifications-date {
  font-size: 10.5px;
  color: #555;
  font-weight: normal;
  margin-left: 8px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.courses-certifications-issuer {
  font-size: 11px;
  color: #4267b2;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.courses-certifications-skills {
  font-size: 10.5px;
  color: #666;
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* Personal Projects Section */
.personal-projects-description {
  font-size: 11.5px;
  line-height: 1.7;
  color: #2a2a2a;
  text-align: justify;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.personal-project-item {
  margin-bottom: 14px;
}

.project-name {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.project-link {
  font-size: 9px;
  margin-bottom: 4px;
  font-style: italic;
  letter-spacing: 0.01em;
}

.project-link a {
  color: #4267b2;
  text-decoration: none;
}

.project-link a:hover {
  text-decoration: underline;
}

.project-description {
  font-size: 11px;
  color: #2a2a2a;
  line-height: 1.7;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

/* Skills Section */
.skills-section {
  margin-bottom: 15px;
}

.skills-row {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}

.skills-category {
  flex: 1;
}

.skills-category-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #4267b2;
  letter-spacing: 0.01em;
}

.skills-list {
  font-size: 10.5px;
  line-height: 1.7;
  color: #2a2a2a;
  letter-spacing: 0.01em;
}

/* Languages Section */
.languages-section {
  margin-bottom: 15px;
}

.language-item {
  font-size: 11px;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.language-name {
  font-weight: 600;
  color: #2a2a2a;
}

/* Links Section */
.links-section {
  margin-bottom: 15px;
}

.link-item {
  font-size: 10px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.link-label {
  font-weight: 600;
  color: #333;
}

.link-item a {
  color: #4267b2;
  text-decoration: none;
}

.link-item a:hover {
  text-decoration: underline;
}

/* Right Column Styles */
.profile-photo {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.achievement-item {
  margin-bottom: 12px;
}

.achievement-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 5px;
}

.achievement-description {
  font-size: 9.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.strength-item {
  margin-bottom: 12px;
}

.strength-title {
  font-size: 10.5px;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.strength-title:before {
  content: "★";
  margin-right: 6px;
  color: #ffd700;
  font-size: 10px;
}

.strength-description {
  font-size: 9px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.reference-item {
  margin-bottom: 12px;
}

.reference-name {
  font-size: 10.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.reference-contact {
  font-size: 9px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.reference-contact a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.reference-contact a:hover {
  text-decoration: underline;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 40px;
  font-size: 10px;
  color: #999;
}

.page-footer {
  display: none;
  visibility: hidden;
}

/* Page break classes for PDF generation */
.page-break-before {
  page-break-before: always;
  break-before: page;
}

.page-break-after {
  page-break-after: always;
  break-after: page;
}

.avoid-break {
  page-break-inside: avoid;
  break-inside: avoid;
}


/* Zoom Controls */
.zoom-controls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.zoom-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #4267b2;
  color: white;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.zoom-button:hover {
  background: #2d4a80;
  transform: scale(1.05);
}

.zoom-button:active {
  transform: scale(0.95);
}

.zoom-button:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
}

.zoom-button:disabled:hover {
  background: #999;
  transform: none;
}

.zoom-reset {
  font-size: 12px;
  font-weight: 600;
  padding: 0;
}

.zoom-reset span {
  display: block;
  font-size: 11px;
  font-weight: 600;
}

.download-pdf-button {
  font-size: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-pdf-button svg {
  width: 20px;
  height: 20px;
}

/* PDF Loading Overlay */
.pdf-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdf-loading-overlay.visible {
  opacity: 1;
}

.pdf-loading-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  min-width: 320px;
  max-width: 400px;
}

.pdf-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: #4267b2;
  border-radius: 50%;
  animation: pdf-spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

@keyframes pdf-spin {
  to { transform: rotate(360deg); }
}

.pdf-loading-title {
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.pdf-loading-step {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  min-height: 20px;
}

.pdf-progress-bar {
  width: 100%;
  height: 6px;
  background: #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
}

.pdf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4267b2, #5b82d1);
  border-radius: 3px;
  width: 0%;
  transition: width 0.4s ease;
}

/* Phone Modal */
.phone-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

.phone-modal-content {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
  animation: slideUp 0.3s ease;
}

.phone-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
}

.phone-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.phone-modal-close {
  font-size: 28px;
  font-weight: 300;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.phone-modal-close:hover {
  color: #333;
}

.phone-modal-body {
  padding: 24px;
}

.phone-number-display {
  font-size: 24px;
  font-weight: 600;
  color: #4267b2;
  text-align: center;
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.phone-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.call-btn {
  background-color: #4267b2;
  color: white;
}

.call-btn:hover {
  background-color: #2d4a80;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 103, 178, 0.3);
}

.phone-action-btn span {
  font-size: 18px;
}

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

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

/* Version Display */
.version-display {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(66, 103, 178, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.version-display #version-text {
  display: block;
}

/* Mobile Banner */
.mobile-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #4267b2 0%, #2d4a80 100%);
  color: white;
  padding: 12px 16px;
  z-index: 2000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-banner-text {
  font-size: 13px;
  font-weight: 500;
  flex: 1;
  line-height: 1.4;
}

.mobile-banner-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.mobile-banner-close:hover {
  opacity: 0.8;
}

/* Mobile Styles - for screens smaller than 1200px */
@media screen and (max-width: 1199px) {
  .mobile-banner {
    display: flex;
  }

  .floating-nav {
    display: none !important;
  }

  .container {
    width: 100%;
    margin: 0;
    box-shadow: none;
    min-height: auto;
  }

  .left-column {
    padding: 60px 20px 30px 20px;
  }

  .header {
    margin: -60px -20px 18px -20px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .header-content {
    width: 100%;
    order: 2;
  }

  .header-photo {
    width: 100px;
    height: 100px;
    order: 1;
    align-self: center;
    margin-bottom: 10px;
  }

  .name {
    font-size: 24px;
  }

  .job-title {
    font-size: 14px;
  }

  .contact-info {
    font-size: 9px;
    align-items: center;
  }

  .contact-row {
    justify-content: center;
    text-align: center;
  }

  .section-title {
    font-size: 14px;
    margin: 16px 0 10px 0;
  }

  .summary {
    font-size: 11px;
    line-height: 1.6;
  }

  .job-position {
    font-size: 12px;
  }

  .job-date {
    font-size: 10px;
  }

  .company-name {
    font-size: 11px;
  }

  .job-description {
    font-size: 10.5px;
    line-height: 1.6;
  }

  .zoom-controls {
    display: none !important;
  }

  .download-pdf-button {
    display: none !important;
  }

  .version-display {
    display: none !important;
  }
}

/* Print Styles */
@media print {
  @page {
    size: A4;
    margin: 15mm 15mm 20mm 15mm;
  }

  html,
  body {
    background: white !important;
    margin: 0;
    padding: 0;
    width: 210mm;
  }

  body {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  img {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    max-width: 100%;
    height: auto;
  }

  .floating-nav {
    display: none !important;
  }

  .container {
    box-shadow: none;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: auto;
    transform: scale(1) !important;
  }

  .left-column {
    padding: 0;
  }

  .header {
    margin: 0 0 15px 0;
    padding: 15px 20px;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background: linear-gradient(135deg, #4267b2 0%, #2d4a80 100%) !important;
    background-color: #4267b2 !important;
  }

  .header,
  .header * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color: white !important;
  }

  .header-photo {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background: white !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    object-fit: cover !important;
    width: 100px !important;
    height: 100px !important;
  }

  .section-title {
    margin-top: 15px;
  }

  /* Page footer for print - fixed at bottom of each page */
  .page-footer {
    display: block !important;
    visibility: visible !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15mm;
    line-height: 15mm;
    text-align: center;
    font-size: 11px;
    color: #333 !important;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    z-index: 9999;
  }

  .zoom-controls {
    display: none;
  }

  .download-pdf-button {
    display: none;
  }

  .version-display {
    display: none !important;
  }

  .phone-modal {
    display: none !important;
  }

  .mobile-banner {
    display: none !important;
  }
}
