@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #FAFAFA;
    color: #333;
    max-width: 600px;
    margin: auto;
    padding: 15px;
}

h2 {
    color: #5DB075;
    text-align: center;
}

input[type="text"], button {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    margin-top: 10px;
}

button {
    background-color: #5DB075;
    color: white;
    cursor: pointer;
    border: none;
}

button:hover {
    background-color: #4b8a5e;
}

#resultat {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #e5e5e5;
    min-height: 70px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#scanner-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

#historique {
    margin-top: 30px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#historique ul {
    list-style-type: none;
    padding-left: 0;
}

#historique li {
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
}

#historique li small {
    color: #999;
}

#historique button {
    margin-top: 10px;
    background-color: #f44336;
}

#historique button:hover {
    background-color: #d32f2f;
}


a {
    color: #5DB075;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
