/* クライアントダッシュボード */
.client-dashboard {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.user-info {
  text-align: right;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-box h3 {
  margin: 0 0 10px;
  color: #666;
  font-size: 16px;
}

.stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #0073aa;
  margin: 0;
}

.stat-text {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.dashboard-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.project-list {
  width: 100%;
  border-collapse: collapse;
}

.project-list th,
.project-list td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.project-list th {
  background: #f9f9f9;
  font-weight: 600;
  color: #333;
}

.project-list tr:hover {
  background: #f9f9f9;
}

.logout-button {
  display: inline-block;
  padding: 8px 16px;
  background: #dc3232;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 10px;
  transition: background 0.3s;
}

.logout-button:hover {
  background: #b32d2e;
  color: #fff;
  text-decoration: none;
}