/* Add your existing styles here */

/* Container styling */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header styling */
header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.5em;
    color: #4a90e2;
}

h2 {
    font-size: 1.5em;
    color: #333;
}

.description {
    font-size: 1.2em;
    color: #666;
}

/* Planner day styling */
.planner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.day {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.day h2 {
    margin-top: 0;
    font-size: 1.2em;
    color: #4a90e2;
}

.day textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 1em;
    resize: none;
}

/* Button styling */
.buttons {
    text-align: center;
    margin-top: 20px;
}

button {
    background-color: #4a90e2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #357abd;
    transform: scale(1.05);
}

/* Footer styling */
footer {
    text-align: center;
    margin-top: 20px;
}

footer nav ul {
    list-style: none;
    padding: 0;
}

footer nav ul li {
    display: inline;
    margin: 0 10px;
}

footer nav ul li a {
    text-decoration: none;
    color: #4a90e2;
    font-weight: bold;
}
