.goal {
    max-width: 600px;
    width: 90%;               
    padding: 30px;           
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    
    /* Centering in the viewport */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    font-size: 1.5rem;        /* bigger text for goals */
    font-weight: 600;
}

.goal input {
    padding: 12px 16px;
    font-size: 1rem;
    margin-bottom: 12px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.goal button {
    padding: 12px 20px;
    font-size: 1rem;
    background-color: #756bcf;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.goal button:hover {
    background-color: #030c5f;
}

.goal ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    width: 100%;
}

.goal li {
    margin: 8px 0;
    padding: 10px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 1.2rem;
}
