/* Styles globaux pour l'application iTicket */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

html {
    height: 100%;
    position: relative;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
}

.main-content {
    flex: 1 0 auto;
    width: 100%;
    padding-bottom: 50px; /* Espace pour le footer */
}

/* Styles du footer */
.footer {
    flex-shrink: 0;
    background-color: white;
    width: 100%;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    max-width: 1366px;
    margin: 0 auto;
    height: 45px;
    padding: 6px;
}

.footer-logo img {
    width: 75px;
    height: auto;
}

.footer-text p {
    font-size: 10px;
    color: black;
    font-weight: 700;
    margin-left: 10px;
    margin-bottom: 0;
}

/* Correction pour les pages avec fond sombre */
body.dark-theme .footer {
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-theme .footer-text p {
    color: white;
}
