/* Dashboard redesign styles */

/* Base dashboard container */
.dashboard-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.dashboard-title {
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
}

/* Moving Info Cards */
.moving-info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.info-card {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 16px;
  font-size: 20px;
  color: white;
}

.info-card.address .info-icon {
  background-color: #4361ee;
}

.info-card.date .info-icon {
  background-color: #3a86ff;
}

.info-card.budget .info-icon {
  background-color: #38b000;
}

.info-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.info-content p {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.category-tile {
  display: flex;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #ccc;
  height: 100%;
}

.category-tile.furniture {
  border-left-color: #4361ee;
}

.category-tile.technology {
  border-left-color: #3a86ff;
}

.category-tile.home-theater {
  border-left-color: #38b000;
}

.category-tile.repairs {
  border-left-color: #e74c3c;
}

.category-tile.packing {
  border-left-color: #ff9f1c;
}

.category-tile.current-spend {
  border-left-color: #9b59b6;
}

.tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: 16px;
  font-size: 24px;
}

.category-tile.furniture .tile-icon {
  color: #4361ee;
}

.category-tile.technology .tile-icon {
  color: #3a86ff;
}

.category-tile.home-theater .tile-icon {
  color: #38b000;
}

.category-tile.repairs .tile-icon {
  color: #e74c3c;
}

.category-tile.packing .tile-icon {
  color: #ff9f1c;
}

.category-tile.current-spend .tile-icon {
  color: #9b59b6;
}

.tile-content {
  flex: 1;
}

.tile-content h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.tile-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tile-stat {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.stat-label {
  color: #666;
}

.stat-value {
  font-weight: 600;
  color: #333;
}

/* Packing Progress Bar */
.packing-progress {
  margin-top: 10px;
}

.progress-container {
  height: 12px;
  background-color: #f0f0f0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  background-color: #ff9f1c;
  border-radius: 6px;
}

.progress-text {
  text-align: right;
  font-weight: 600;
  color: #ff9f1c;
}

/* Quick Links */
.section-title {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.quick-link:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.quick-link i {
  margin-right: 8px;
  color: #4361ee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .moving-info-container {
    flex-direction: column;
  }
  
  .info-card {
    flex: 1 1 100%;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-link {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .quick-link {
    flex: 1 1 100%;
  }
}