/* css/dashboard.css - dashboard.html専用のスタイル */

/* ダッシュボードコンテナ */
.dashboard-container {
    width: 95%;
    max-width: 800px; /* フォームより広く、情報が多い想定 */
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* メッセージとステータス */
#welcome-message {
    color: var(--main-color);
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}
.user-status {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 30px;
}

/* 各セクションのスタイル */
.dashboard-section {
    margin-top: 30px;
    padding: 20px 0;
    border-bottom: 1px dashed #ddd;
}
.dashboard-section h3 {
    color: var(--sub-text-color);
    margin-top: 0;
    border-left: 5px solid var(--main-color);
    padding-left: 10px;
}

/* リンクとリスト */
.dashboard-section ul {
    list-style: none;
    padding: 0;
}
.dashboard-section li {
    margin-bottom: 10px;
}
.dashboard-section a {
    color: #007bff;
    text-decoration: none;
    padding: 5px;
    display: block;
    transition: background-color 0.2s;
}
.dashboard-section a:hover {
    background-color: #f0f8ff;
    border-radius: 4px;
}

/* 保存された結果のプレースホルダー */
.placeholder-text {
    color: gray;
    font-style: italic;
    padding: 15px;
    border: 1px dashed #ccc;
    border-radius: 4px;
    text-align: center;
}

/* ログアウトエリア */
.logout-area {
    margin-top: 40px;
    text-align: center;
}
.logout-link {
    color: #dc3545; /* 赤 */
    text-decoration: none;
    font-weight: bold;
}
.logout-link:hover {
    text-decoration: underline;
}


/* dashboard.css (追加推奨) */

.memo-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.memo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.memo-item:last-child {
    border-bottom: none;
}

.memo-details {
    flex-grow: 1;
    margin-right: 10px;
}

.memo-title {
    font-weight: bold;
    color: #007bff; /* 青色 */
    display: block;
}

.memo-summary {
    font-size: 0.9em;
    color: #666;
}

.memo-actions {
    display: flex;
    gap: 8px;
}

.small-button {
    padding: 5px 10px;
    font-size: 0.8em;
}