/* ==========================================================================
   Divya Sharma - Staff Nurse Portfolio & Resume Website Stylesheet
   ========================================================================== */

:root {
  /* Color Palette - Clinical Teal & Ocean Modern */
  --primary: #0d9488;
  --primary-hover: #0f766e;
  --primary-light: #ccfbf1;
  --primary-gradient: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  
  --secondary: #0284c7;
  --secondary-hover: #0369a1;
  --secondary-light: #e0f2fe;
  
  --accent: #10b981;
  --accent-light: #d1fae5;
  
  --bg-color: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --text-main: #1e293b;
  --text-muted: #64748b;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(13, 148, 136, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(13, 148, 136, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary-hover);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Header & Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 2rem;
}

.brand-avatar-wrapper {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  padding: 2.5px;
  background: var(--primary-gradient);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  background-color: #ffffff;
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.brand-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  background-color: var(--primary-light);
  color: var(--primary-hover);
  border-radius: var(--radius-full);
  margin-left: 0.25rem;
  margin-right: 0.75rem;
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #ffffff;
}

.btn-secondary {
  background-color: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline-docx {
  background-color: rgba(2, 132, 199, 0.08);
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}

.btn-outline-docx:hover {
  background-color: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius-md);
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  font-size: 1.25rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 3.5rem 0 4.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nurse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  width: fit-content;
  max-width: 100%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px dashed var(--border-color);
  border-bottom: 1px dashed var(--border-color);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.info-item i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Profile Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.profile-card-glow {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.profile-card-glow::before {
  content: '';
  position: absolute;
  inset: -15px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  filter: blur(25px);
  opacity: 0.25;
  z-index: 0;
}

.profile-card {
  position: relative;
  z-index: 1;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.profile-img-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 5px;
  background: var(--primary-gradient);
  box-shadow: var(--shadow-md);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  background-color: var(--bg-color);
}

.status-indicator {
  position: absolute;
  bottom: 12px;
  right: 18px;
  background-color: #10b981;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid var(--card-bg);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.profile-role {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.badge {
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  background-color: var(--bg-color);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary-hover);
  border: none;
}

/* Quick Stats Section */
.stats-banner {
  margin-top: -1.5rem;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Career Objective Section */
.objective-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-light);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.objective-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Timeline & Rotations */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  width: 3px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 4.5rem;
  margin-bottom: 2rem;
}

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

.timeline-dot {
  position: absolute;
  left: 1.2rem;
  top: 0.25rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--card-bg);
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  background: var(--primary);
  transform: scale(1.2);
  box-shadow: var(--shadow-glow);
}

.rotation-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.rotation-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.rotation-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.rotation-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.rotation-duration {
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-light);
  color: var(--primary-hover);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.rotation-hospital {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.rotation-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Education & SGPA Grid */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-title i {
  color: var(--primary);
}

.cgpa-hero-badge {
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.cgpa-value {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.cgpa-label {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 600;
}

.sgpa-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sgpa-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  background-color: var(--bg-color);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.sem-name {
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 125px;
}

.sem-bar-container {
  flex-grow: 1;
  height: 8px;
  background-color: var(--border-color);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.sem-bar {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

.sem-score {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  min-width: 40px;
  text-align: right;
}

.school-item {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

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

.school-class {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.school-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.school-percentage {
  font-weight: 800;
  color: var(--accent);
}

/* Research Spotlight Section */
.research-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.research-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background-color: rgba(2, 132, 199, 0.1);
  color: var(--secondary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.research-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.research-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Certifications & Skills Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cert-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.cert-badge-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cert-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.cert-issuer {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cert-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

/* Personal Details */
.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  background-color: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.detail-icon {
  color: var(--primary);
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

.detail-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.detail-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Download Bar Banner */
.download-banner {
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  padding: 3rem 1.75rem;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.download-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.download-banner p {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 1.75rem;
}

.download-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  margin-top: 3.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}

.toast {
  background-color: #0f172a;
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.88rem;
  animation: slideUp 0.3s ease-out forwards;
}

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

/* Responsive Breakpoints - Mobile Layout Rules */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 1.25rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    width: 100%;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.4rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-quick-info {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edu-grid, .personal-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .nurse-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 1rem;
  }

  .timeline-item {
    padding-left: 2.5rem;
  }

  .timeline-dot {
    left: 0.3rem;
    width: 1.3rem;
    height: 1.3rem;
  }

  .sem-name {
    min-width: 90px;
    font-size: 0.78rem;
  }
}

/* Print / PDF Export Media Styles */
@media print {
  @page {
    size: A4 portrait;
    margin: 8mm 10mm;
  }
  html, body {
    background: #ffffff !important;
    color: #1e293b !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  body > *:not(#resume-download-template) {
    display: none !important;
  }
  #resume-download-template {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
  }
  .no-print, .no-pdf {
    display: none !important;
  }
  tr {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  h2 {
    page-break-after: avoid;
    break-after: avoid;
  }
}
