/* 状態復元メッセージのスタイル */
.estate-restore-message {
  background-color: #f0f8ff;
  border: 1px solid #4a90e2;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.estate-restore-message button {
  margin: 0 5px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.estate-restore-message #restore-state {
  background-color: #4a90e2;
  color: white;
}

.estate-restore-message #restore-state:hover {
  background-color: #357abd;
}

.estate-restore-message #cancel-restore {
  background-color: #e0e0e0;
  color: #333;
}

.estate-restore-message #cancel-restore:hover {
  background-color: #ccc;
}

/* 読み込み中インジケーター */
.loading-indicator {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 16px;
}