/* Navigation Links Styles */

/* Quick Links Grid */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f8f9fa;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  text-decoration: none;
  color: #3c4043;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}

.quick-link:hover {
  background: #e8f0fe;
  border-color: #4285f4;
  color: #1a73e8;
}

.quick-link .material-icons {
  font-size: 16px;
  color: #4285f4;
}

/* Ecosystem Section */
.ecosystem-section {
  border-top: 1px solid #e8eaed;
  padding-top: 12px;
}

.ecosystem-section h4 {
  font-size: 12px;
  color: #5f6368;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ecosystem-links-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ecosystem-link {
  display: block;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  text-decoration: none;
  color: #3c4043;
  font-size: 11px;
  transition: all 0.2s;
}

.ecosystem-link:hover {
  background: #f8f9fa;
  border-color: #4285f4;
  color: #1a73e8;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .quick-links-grid {
    grid-template-columns: 1fr;
  }
}