/* app/static/css/base.css. General body and container adjustments */
/* base.css */
/* General body and container adjustments */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-height: calc(100vh - 40px);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Horizontal rule for separation */
hr {
    border: 0;
    height: 1px;
    background-color: #eee;
    margin: 25px 0;
}

