
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: #fff0f6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.app {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 500px;
    padding: 20px;
}

header h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.profile-section input[type="text"] {
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

#profile-pic-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

button {
    padding: 10px;
    border-radius: 12px;
    background: #ff69b4;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #ff85c1;
}
