body {
    background: #f4f7fb;
    font-family: "Yu Gothic", "Meiryo", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.profile-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

table {
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ddd;
    padding: 12px 18px;
}

th {
    background-color: #4f8ef7;
    color: white;
    width: 120px;
}

td {
    background-color: #fafafa;
}

.image-cell {
    text-align: center;
    vertical-align: middle;
}

.image-cell img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4f8ef7;
}
.message {
    margin-top: 25px;
    padding: 15px;
    background-color: #f7f9fc;
    border-radius: 10px;
}

.message h2 {
    margin-top: 0;
    color: #4f8ef7;
}

.message p {
    line-height: 1.8;
}