/* General Styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

.templatemo-flex-row {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.templatemo-sidebar {
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  min-width: 250px;
}

.templatemo-sidebar header {
  text-align: center;
}

.templatemo-sidebar h1 {
  margin: 0;
  font-size: 24px;
}

.templatemo-left-nav ul {
  list-style: none;
  padding: 0;
}

.templatemo-left-nav ul li {
  margin: 15px 0;
}

.templatemo-left-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.templatemo-left-nav ul li a:hover {
  color: #1abc9c;
}

.templatemo-content {
  flex: 1;
  background-color: #ecf0f1;
}

.iframe-container {
  padding: 10px;
}

/* Floating Button Styles */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-btn .btn-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  background-color: #3498db;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.btn-fab.facebook {
  background-color: #3b5998;
}

.btn-fab.whatsapp {
  background-color: #25d366;
}

.btn-fab.drive {
  background-color: #f4b400;
}

.btn-fab:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .templatemo-flex-row {
    flex-direction: column;
  }

  .templatemo-sidebar {
    width: 100%;
    text-align: center;
  }

  .iframe-container {
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .templatemo-sidebar h1 {
    font-size: 18px;
  }

  .templatemo-left-nav ul li a {
    font-size: 14px;
  }

  .btn-fab {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
