/* /root/main-styles.css */

body {
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
}

.message {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

/* Hamburger icon styles */
.navbar-toggler {
  display: block;
  border: 1px solid #333;
  color: #333;
  background-color: #eee;
  margin-right: 15px;
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

/* DB Data Section (Reviews) */
.db-data-section {
  background-color: #e6f7ff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 50px;
}

.db-data-section h2 {
  margin-bottom: 30px;
  font-size: 2.5em;
  color: #333;
}

.db-items-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.db-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.db-item:hover {
  transform: translateY(-5px);
}

.db-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #007bff;
  margin-bottom: 15px;
}

.db-item-comment {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 10.8em;
}

/* Responsive container styles */
.responsive-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
  background-color: #add8e6;
}

.responsive-item {
  text-align: center;
  max-width: 90%;
}

.responsive-item img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.responsive-caption {
  margin-top: 10px;
  font-size: 16px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .db-data-section h2 {
    font-size: 2em;
  }
  
  .db-item {
    max-width: 90%;
  }
  
  .responsive-container {
    gap: 20px;
    padding: 20px 10px;
  }
  
  .responsive-caption {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .db-item img {
    width: 120px;
    height: 120px;
  }
  
  .db-item-comment {
    font-size: 1em;
  }
  
  .responsive-item img {
    max-width: 100%;
  }
  
  .responsive-caption {
    font-size: 14px;
  }
}

/* Additional responsive styles for existing styles */
.responsive-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.responsive-item {
  text-align: center;
}

.responsive-item img {
  /* Default size */
  height: 225px;
  width: 375px;
}
