body {
    background-color: #172128;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.kalina-header {
    background: url('{{ asset("img/background-head.webp") }}') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    position: relative;
  }

  .kalina-header img {
    max-width: 250px;
  }

  .wizard-step {
    display: none;
  }

  .wizard-step.active {
    display: block;
  }

  .wizard-nav {
    margin-bottom: 30px;
    text-align: center;
  }

  .wizard-nav button {
    background-color: #e44118;
    color: white;
    border: none;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 5px;
  }

  .wizard-nav button:disabled {
    background-color: #999;
  }

  .form-control {
    background-color: #fff;
    color: #000;
  }

  .btn-kalina {
    background-color: #e44118;
    color: white;
    border: none;
    padding: 10px 25px;
    margin-top: 20px;
    border-radius: 5px;
  }

  label {
    margin-top: 10px;
    font-weight: bold;
  }

  input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border: 2px solid #e44118 !important;
}

input.is-valid {
  border: 2px solid green;
}

  footer {
    background: #0f151a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 60px;
  }

  footer a, footer a:hover{
    color: #ccc;
    text-decoration: none;
  }

        
/* Personnalisation du menu */
.navbar {
    background-color: #1f2a33; /* Couleur de fond du menu */
}
.navbar-nav .nav-link {
    color: white !important; /* Couleur du texte des liens */
            font-weight: 500;
            font-size: 16px;
        }
        .navbar-nav .nav-link:hover {
            color: #e64a19 !important; /* Couleur du texte au survol */
        }
        .navbar-brand img {
            max-height: 40px; /* Taille de l'image logo */
        }
        .navbar-toggler-icon {
         background-color: none;
        }

.kalina-success {
    background: url('img/background-head.webp') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.kalina-success img.logo {
    max-width: 220px;
    margin-bottom: 30px;
}

.confirmation-box {
    background-color: rgba(23, 33, 40, 0.9);
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 800px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.kalina-success h1 {
    color: #e44118;
    font-size: 2rem;
    margin-bottom: 20px;
}

.kalina-success p.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-retour {
    background-color: #e44118;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-retour:hover {
    background-color: #c83613;
}

.redirect {
    margin-top: 15px;
    color: #ccc;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .confirmation-box {
        padding: 25px 20px;
    }
    .kalina-success h1 {
        font-size: 1.6rem;
    }
}