.pokemon-heure {
    display: block;
    font-size: 3.2em;
    color: #3b4cca;
    font-family: 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #ffcb05, 4px 4px 0 #3b4cca33, 0 0 8px #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}
body { font-family: Arial, sans-serif; background: #f7f7f7; margin: 0; padding: 0; }
h2 { color: #2c3e50; }
form { background: #fff; padding: 20px; border-radius: 8px; max-width: 350px; margin: 40px auto; box-shadow: 0 2px 8px #ccc; }
label { display: block; margin-top: 10px; }
input[type="text"], input[type="password"] { width: 100%; padding: 8px; margin-top: 5px; border: 1px solid #ccc; border-radius: 4px; }
button { margin-top: 15px; padding: 10px 20px; background: #2980b9; color: #fff; border: none; border-radius: 4px; cursor: pointer; }
button:hover { background: #3498db; }
.flashes { color: #c0392b; list-style: none; padding: 0; }
body.enfant-bg {
    background: url('/static/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.login-bg {
    background: url('/static/img/background-login.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.parent-bg {
    background: url('/static/img/background-sakura.webp') no-repeat center center fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
}

.pokemon-container {
    background: rgba(255,255,255,0.85);
    border: 4px solid #ffcb05;
    border-radius: 24px;
    width: 70vw;
    max-width: 900px;
    min-width: 350px;
    min-height: 420px;
    margin: 0 auto;
    box-shadow: 0 8px 32px #3b4cca55;
    padding: 48px 36px 36px 36px;
    position: relative;
}
.pokemon-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.pokemon-header img {
    width: 48px;
    height: 48px;
}
.pokemon-title {
    color: #3b4cca;
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 2em;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #ffcb05, 4px 4px 0 #3b4cca33;
}
.pokemon-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}
.pokemon-list li {
    background: #e0e7ff;
    border: 2px solid #3b4cca;
    border-radius: 12px;
    margin-bottom: 8px;
    padding: 10px 16px;
    font-size: 1.1em;
    color: #222;
    box-shadow: 1px 2px 0 #ffcb05;
}
.pokemon-current {
    background: #ffcb05;
    color: #3b4cca;
    border: 2px solid #3b4cca;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 12px;
    box-shadow: 2px 4px 0 #3b4cca33;
}
.pokemon-none {
    color: #888;
    font-style: italic;
    margin-bottom: 12px;
}
.pokemon-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #3b4cca;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 1px 2px 0 #ffcb05;
    border: 2px solid #ffcb05;
    transition: background 0.2s, color 0.2s;
}
.pokemon-btn:hover {
    background: #ffcb05;
    color: #3b4cca;
    border-color: #3b4cca;
}
.sakura-container {
    background: rgba(255, 255, 255, 0.92);
    border: 3px solid #e9b7d1;
    border-radius: 24px;
    max-width: 900px;
    min-width: 350px;
    min-height: 420px;
    margin: 32px auto;
    box-shadow: 0 8px 32px #e9b7d1aa;
    padding: 48px 36px 36px 36px;
    position: relative;
    overflow-y: auto;
    max-height: 95vh;
}
.sakura-title {
    color: #d16ba5;
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 2.1em;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #fff0f6, 4px 4px 0 #e9b7d1;
    margin-bottom: 18px;
}
.sakura-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #d16ba5;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 1px 2px 0 #e9b7d1;
    border: 2px solid #e9b7d1;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 12px;
}
.sakura-btn:hover {
    background: #fff0f6;
    color: #d16ba5;
    border-color: #d16ba5;
}
.sakura-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}
.sakura-list li {
    background: #fff0f6;
    border: 2px solid #e9b7d1;
    border-radius: 12px;
    margin-bottom: 8px;
    padding: 10px 16px;
    font-size: 1.1em;
    color: #222;
    box-shadow: 1px 2px 0 #e9b7d1;
}
.sakura-section-title {
    color: #d16ba5;
    font-size: 1.2em;
    margin-top: 24px;
    margin-bottom: 8px;
    font-weight: bold;
}