body {
    font-family: 'Quicksand', sans-serif; /* Body text font */
    background-image: url('planner-background-v18pd9te0sfh5ivw.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 20px;
    margin: 0;
}

h1, h2 {
    font-family: 'Quicksand', sans-serif;  /* Title font */
    text-align: center;
    color: #333;
}



.container {
    background: rgba(229, 199, 199, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin-top: 200px;  /* Adjust this value to move it down */
}


h1, h2 {
    text-align: center;
    color: #333;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button.full-width {
    width: 100%;
    padding: 10px;
    background: #4CAF50;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    margin-top: 10px;
}
button.full-width:hover {
    background: #45a049;
}

.small-button {
    padding: 6px 12px;
    font-size: 0.9rem;
    background: #2196F3;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px auto;
    display: block;  /* Ensures it's centered and on its own line */
}
.small-button:hover {
    background: #1976D2;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #f4f4f4;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

.warning {
    color: red;
    font-weight: bold;
}
