* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, Segoe UI, Roboto, sans-serif; background: #10141a; color: #eee; }

/* --- Page d'affichage tablette --- */
.display-page { display: flex; align-items: center; justify-content: center; height: 100vh; }
.frame { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.bird-image { max-width: 100%; max-height: 100%; object-fit: contain; }
.caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.55);
    padding: 16px 24px;
    text-align: center;
}
.com-name { display: block; font-size: 2rem; font-weight: 600; }
.sci-name { display: block; font-size: 1.1rem; font-style: italic; opacity: 0.8; }

/* --- Page todo --- */
.todo-page { padding: 24px 32px; background: #f7f7f5; color: #222; }
.todo-page h1 { margin-top: 0; }
table { width: 100%; border-collapse: collapse; margin-bottom: 32px; background: white; }
th, td { padding: 10px 12px; border-bottom: 1px solid #ddd; text-align: left; }
th { background: #eee; }
button { cursor: pointer; padding: 6px 12px; border: none; border-radius: 4px; background: #2f7d3c; color: white; }
.done-table button { background: #888; }
.empty { font-size: 1.2rem; }
code { background: #eee; padding: 2px 6px; border-radius: 4px; }
