body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e6f2ff 0%, #b3d9ff 100%);
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 800px;
}
h1, h2 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 24px;
}
p {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}
.input-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    color: #0066cc;
}
input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    font-size: 16px;
}
.readonly {
    background-color: #f0f8ff;
}
button {
    background: linear-gradient(to right, #0066cc, #0099ff);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s ease;
    margin-bottom: 10px;
}
button:hover {
    background: linear-gradient(to right, #005bb5, #0088e6);
}
#output {
    background-color: #f0f8ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    word-break: break-all;
    white-space: pre-wrap;
}
.status-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.status-field {
    width: 18%;
}
.status-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.status-field input {
    width: 100%;
    padding: 10px;
    border-width: 2px;
    border-style: solid;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    color: black;
}
.physical label { color: #FF9999; }
.passion label { color: #FF9933; }
.technique label { color: #66CC66; }
.visual label { color: #3399FF; }
.smart label { color: #CC99FF; }
.physical input { border-color: #FF9999; }
.passion input { border-color: #FF9933; }
.technique input { border-color: #66CC66; }
.visual input { border-color: #3399FF; }
.smart input { border-color: #CC99FF; }

.instruction-box {
    background-color: #f0f8ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}
.instruction-box p {
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 10px;
}
.instruction-box ol, .instruction-box ul {
    margin: 0;
    padding-left: 20px;
}
.instruction-box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 15px;
}

#result {
    background-color: #f0f8ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    word-break: break-all;
}
