.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px;
}

/* Main content wrappers */
.content-wrapper {
    background: #fff;

    margin: 0 auto 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    padding: 20px 25px;
}

/* Header styles from home.html */
header {
    background-color: #4caf50;
    padding: 15px 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header h1 {
    margin: 0;
    font-size: 24px;
}
nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    font-size: 16px;
    transition: opacity 0.2s ease-in-out;
}
nav a:hover {
    opacity: 0.8;
}
