/* Import a clean, modern font */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

body {
  font-family: 'Nunito', sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
}

/* Navbar styling */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-link {
  font-weight: 600;
}

/* Page content spacing */
.page-content {
  padding: 1rem;
}

/* Image styling */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Card and info div styling (from your analysis page) */
.info-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
}

/* above is the new styling */


/* assets/style.css */
/*
body {
    background: linear-gradient(to bottom, #f4f7f9, #e8eef1);
    color: #333;
}
*/


/* Custom container: Now 75% width */
.custom-container {
  width: 75%;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

/* Scrolling text */
.scrolling-text {
  position: relative;
  overflow: hidden;
  background: #fafafa;
  border-top: 1px solid #ddd;
  padding: 10px 0;
  height: 40px;
}

.scrolling-text p {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: scrollText 20s linear infinite;
  font-size: 16px;
  color: #555;
  padding-left: 100%;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }
  .sidebar {
    border-right: none;
    padding-bottom: 20px;
    width: 25%;
  }

}