/* filename: static/css/main.css */


/* nav */
.navbg {
    background: linear-gradient(135deg, #0f0c29, #302b63, #e100ff);
    color: #f8e2e9;
    margin: 0;
}

.logo-with-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-glow {
  filter: drop-shadow(0 0 8px #e100ff) drop-shadow(0 0 12px #ff00cc);
  transition: transform 0.3s ease-in-out;
}
.logo-glow:hover {
  transform: scale(1.05);
}

/* Testo in stile neon */
.logo-slogan-neon {
  width: 66%;
  font-size: 1rem;
  color: #f8e2e9;
  text-align: center;
  margin-top: 4px;
  font-family: 'Neon', sans-serif;
  text-shadow:
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 6px #ff00cc,
    0 0 10px #ff00cc,
    0 0 20px #ff00cc,
    0 0 30px #ff00cc,
    0 0 40px #ff00cc;
  animation: neon-flicker 3s infinite alternate;
}

/* Effetto neon "tremolio" */
@keyframes neon-flicker {
  0%, 100% {
    opacity: 1;
    text-shadow:
      0 0 2px #fff,
      0 0 4px #fff,
      0 0 6px #ff00cc,
      0 0 10px #ff00cc,
      0 0 20px #ff00cc,
      0 0 30px #ff00cc,
      0 0 40px #ff00cc;
  }
  50% {
    opacity: 0.8;
    text-shadow:
      0 0 2px #fff,
      0 0 4px #ff00cc,
      0 0 8px #ff33cc,
      0 0 12px #ff33cc;
  }
}

.btn-outline-light {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

nav input::placeholder {
  color: #f8f9fa !important;
  opacity: 1;
}

.btn-logout-custom {
  width: 40px;
  height: 40px;
  background-color: rgba(33, 37, 41, 0.4); /* sfondo scuro trasparente */
}

.btn-in {
  background-color: rgba(33, 37, 41, 0.4); 
}



.btn-custom-neon {
  background: linear-gradient(135deg, #e100ff, #ff00cc);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
}

.btn-custom-neon:hover {
  background: linear-gradient(135deg, #ff33cc, #e100ff);
  color: white;
}

.btn-custom-seller {
  background: linear-gradient(135deg, #ad71b5, #ff66e0);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
}

.btn-custom-seller:hover {
  background: linear-gradient(135deg, #ff33cc, #e100ff);
  color: white;
}


.btn-neon-purple {
    background: #e100ff;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
  }

  .btn-neon-purple:hover {
    background-color: #ff33cc;
  }

.border-neon-purple {
  border: 2px solid #e100ff;
  }

.btn-neon-purple {
  background-color: #e100ff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
}
.btn-neon-purple:hover {
  background-color: #ff33cc;
  color: white;
}

.text-neon-link {
  color: #e100ff;
  text-decoration: none;
}
.text-neon-link:hover {
  color: #ff33cc;
  text-decoration: underline;
}

#lang-selector-form select {
  min-width: 120px;
}

select.form-select {
  background-color: transparent !important;
  border-color: #ccc;
  color: #fff;
}
select.form-select option {
  background-color: #000;
  color: #fff;
}

.custom-lang-select {
  background-color: transparent !important;
  color: white !important;
  border-color: white !important;
}

/* Sfondo e colore della tendina */
.custom-lang-select option {
  background-color: #111 !important;  /* sfondo scuro */
  color: white !important;           /* testo visibile */
}
/* footer */

/* Titoli neon-tech */
.footer-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e100ff;
  text-shadow:
    0 0 4px #ff00cc,
    0 0 8px #ff00cc;
  border-bottom: 2px solid #ff00cc;
  display: inline-block;
  padding-bottom: 0.25rem;
}

/* Spazio tra icona e testo */
.footer-links li {
  margin-bottom: 0.5rem;
}

/* Link neon */
.footer-links a {
  color: #f8e2e9;
  transition: color 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  color: #ff00cc;
  transition: color 0.3s ease;
}

/* Hover effect */
.footer-links a:hover {
  color: #ff33cc;
}

.footer-links a:hover i {
  color: #e100ff;
}

/* filename: static/css/home.css */

.content-home {
    min-height: 90vh;
    background: linear-gradient(82deg, #0f0c29, #302b63, #e100ff);
    color: #f8e2e9;
    margin: 0;
}

.search-box {
  border: 2px solid #e100ff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(225, 0, 255, 0.3);
}

.topform {
  display: none !important;
}

.homeone {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.hometwo {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.bbcolor {
    color: khaki;
}

/* filename: static/css/dashboard.css */

.content-dashboard {
    min-height: 90vh;
    background: linear-gradient(82deg, #0f0c29, #302b63, #e100ff);
    color: #f8e2e9;
    margin: 0;
}

.username-light.text-muted {
  color: #ddd !important;
}

.highlight-missing {
    background-color: rgba(255, 0, 0, 0.2);
    padding: 4px 6px;
    border-radius: 5px;
    transition: all 0.3s;
  }


.clearable-file-input .currently {
  display: none;
}

.minitxt {
  font-size: 0.1px;
}
  
#copyStatus {
  color: #fff !important; 
}