/* ====================================================================
   FOOTER PROGICIEL DEFI - STYLES
   Destination : /assets/progiciel/css/footer.css
   ==================================================================== */

.progiciel-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 8px 30px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(10px);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.footer-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.footer-line-1 {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.footer-left {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 500;
}

.footer-right {
    text-align: right;
}

.footer-line-1 .footer-right {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 400;
    opacity: 0.7;
}

.footer-line-2 .footer-right .version-info {
    font-size: 0.75rem;
    color: #94a3b8;
    font-family: 'Courier New', monospace;
    font-weight: 400;
    opacity: 0.7;
}

/* Ajouter un padding en bas du body pour éviter que le contenu soit caché par le footer fixe */
body {
    padding-bottom: 80px;
}
