html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


/*.non-cloture {
    background-color: rgba(255, 255, 0, 0.3) !important;*/ /* Jaune doux et transparent */
/*}*/


/*
Style CSS pour label page d'accueil
*/
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #6f42c1);
    color: white;
    padding: 30px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .header h1 {
        font-size: 2.5rem;
        margin: 0;
        font-weight: bold;
    }

    .header p {
        font-size: 1.2rem;
        margin: 10px 0 0;
    }

.welcome-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.header-buttons {
    margin-top: 20px;
}

    .header-buttons a {
        display: inline-block;
        background: white;
        color: #007bff;
        padding: 10px 20px;
        font-size: 1rem;
        font-weight: bold;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.3s ease, color 0.3s ease;
    }

        .header-buttons a:hover {
            background: #0056b3;
            color: white;
        }

/*
Style CSS pour Gestion des boutons des tickets
*/
.btn-ticket {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .btn-ticket i {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .btn-ticket:hover {
        transform: scale(1.1);
        opacity: 0.9;
    }

.Approuver-message {
    background-color: rgba(144, 238, 144, 0.2); /* Jaune clair */
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-block;
}
.Refuser-message {
    background-color: rgba(255, 99, 71, 0.2); /* Jaune clair */
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-block;
}
.Terminer-message {
    background-color: rgba(255, 255, 0, 0.2); /* Jaune clair */
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-block;
}