:root {
    --bg-color: #e0e0e0;
    --card-bg: #ffffff;
    --text-main: #333;
    --accent-blue: #0b5d7a;
    --accent-orange: #e67e22;
    --status-safe: #2ecc71;
    --status-danger: #e74c3c;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* プロフィール */
.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    object-fit: contain;
    border: 2px solid #ccc;
}

h1 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
}

.last-update {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* グリッドレイアウト */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 15px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card h2 {
    font-size: 0.9rem;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* 各カードのスタイル */
.remind-card .date-display {
    color: var(--accent-orange);
    font-size: 2.2rem;
    font-weight: bold;
    margin: 10px 0;
}

.safety-item {
    margin-bottom: 15px;
}

.safety-time {
    font-size: 0.8rem;
    font-weight: bold;
}

.status-text {
    font-size: 1.8rem;
    font-weight: bold;
}

.status-safe { color: var(--status-safe); }
.status-danger { color: var(--status-danger); }

.hydration-card .time-display {
    color: var(--accent-blue);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 10px;
}

.label {
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 2px;
}

/* ボタン */
footer {
    margin-top: 30px;
}

.next-page-btn {
    background-color: var(--accent-blue);
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}
