/* Custom Stylesheet */
/**
 * Use this file to override Materialize files so you can update
 * the core Materialize files in the future
 *
 * Made By MaterializeCSS.com
 */

nav ul a,
nav .brand-logo {
  color: #444;
}

p {
  line-height: 2rem;
}

.sidenav-trigger {
  color: #26a69a;
}

.parallax-container {
  min-height: 380px;
  line-height: 0;
  height: auto;
  color: rgba(255,255,255,.9);
}
  .parallax-container .section {
    width: 100%;
  }

@media only screen and (max-width : 992px) {
  .parallax-container .section {
    position: absolute;
    top: 40%;
  }
  #index-banner .section {
    top: 10%;
  }
}

@media only screen and (max-width : 600px) {
  #index-banner .section {
    top: 0;
  }
}

.icon-block {
  padding: 0 15px;
}
.icon-block .material-icons {
  font-size: inherit;
}

footer.page-footer {
  margin: 0;
}

.recipe-card-container .card-image img {
  height: 200px; 
  object-fit: cover; 
  width: 100%; 
}

.recipe-card-container .card-content p {
  height: 60px; 
  overflow: hidden; 
  text-overflow: ellipsis;
}

.recipe-card-container .card-content .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 1; /* Limit to 1 line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; /* Avoid text ocupy more than 1 line */
}

.home-container .card {
  height: 300px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.user-card-container .card {
  height: 400px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.user-card-container .card .card-image img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  object-position: center;
}

.user-card-container .card-content {
  flex-grow: 1;
  overflow: hidden;
}

.user-card-container .card-content p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.followers-info {
  display: flex;
  align-items: center;
  gap: 5px; /* Espacio entre la estrella y el número */
}

.followers-info i {
  font-size: 18px; /* Ajusta el tamaño del ícono de la estrella */
  color: yellow; /* O el color que prefieras */
}

.followers-info span {
  font-size: 16px; /* Ajusta el tamaño del texto */
  font-weight: bold;
}

.select2-container {
  width: 100% !important;
}

.jan-aligned-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jan-tool-btn {
  width: 25%;
}

.jan-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

#loading-spinner .spinner-layer {
  animation: continuous-spin 1.2s linear infinite !important;
}

@keyframes continuous-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.jan-legend-bordered {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.jan-legend-bordered-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.jan-legend-bordered-item {
  margin-bottom: 15px;
}

.jan-admin-console-fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
