/* Report main elements */

.report-main {
  flex: 1;
  background: #f5f5f5;
}

.report-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}

/* Content Wrapper */

.content-wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
  transition: margin-left 0.3s ease;
}

/* Report Section */

.report-content {
  width: 100%;
  margin: 0;
  padding: 2rem 0rem;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.report-content .report-section:nth-child(odd) {
  background-color: #ffffff;
}

.report-content .report-section:nth-child(even) {
  background-color: #fff;
}

.report-section {
  padding: 0rem 2.5rem;
}

/* Floating buttons */

.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1000;
}

.fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 30px;
  border: 3px solid #e0e0e0;
  background: white;
  color: var(--colorSundK-primary-blue);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-btn:hover {
  background: var(--colorSundK-light-blue-20);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fab-btn i {
  font-size: 1.25rem;
}

/* Footer */

.report-footer {
  background-color: var(--colorSundK-primary-blue);
  color: white;
  padding: 2rem 0;
  margin-top: auto;
}

.footer-container {
  max-width: 100%;
  margin: 0 0rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-section {
  flex: 0 0 auto;
}

.footer-section-right {
  text-align: left;
}

.footer-logo-wrapper {
  margin-bottom: 0.5rem;
  /*margin-right: 17rem;*/
}

.footer-logo {
  height: 40px;
  width: 2p;
  filter: brightness(0) invert(1);
}

.footer-heading {
  font-weight: 550;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.footer-info {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
}

.footer-info p {
  margin: 0;
}

.footer-contact-email {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-contact-email a {
  color: white;
  text-decoration: none;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.25s ease;
  font-size: 1.15rem;
  text-decoration: none;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

