/* Custom styles to complement Pico.css */

:root {
    --comparison-spacing: 2rem;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.comparison-item {
    margin: var(--comparison-spacing) 0;
    padding: 1rem;
    background: var(--pico-card-background-color);
    border-radius: var(--pico-border-radius);
    box-shadow: var(--pico-card-box-shadow);
}

#showcase {
    margin: 3rem 0;
}

.grid {
    gap: 2rem;
}

footer.container {
    text-align: center;
    border-top: 1px solid var(--pico-muted-border-color);
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Ensure images in the slider don't have Pico's default max-width which might interfere with the component's internal logic if it were different */
image-comparison-slider img {
    max-width: none;
}
