/* Report main elements */

.report-main {
  flex: 1;
  background: #f5f5f5;
}

.report-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-left 0.2s ease;
}

/* Content Wrapper */

.content-wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
  transition: margin-left 0.2s 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: 1px solid var(--colorSundK-primary-blue);
  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;
}

