/**
 * Clean Dashboard Footer - Simplified styling
 * Consistent styling for dashboard footer
 */

/* Base footer structure */
.dashboard-footer {
  position: relative;
  height: auto;
  min-height: 50px;
  margin-top: 40px;
  padding: 15px 0;
  border-top: 1px solid var(--border-color, #2a2f42);
  background-color: var(--footer-bg, #1e2130);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Footer content container */
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
}

/* Copyright text */
.copyright {
  color: var(--footer-text, #64748b);
  font-size: 12px;
  font-weight: 500;
}

/* Separator dots */
.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--dot-color, #2a2f42);
}

/* Footer links */
.footer-link {
  color: var(--footer-text, #64748b);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary, #6366f1);
}

/* Social link container */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 5px;
}

/* Individual social links */
.footer-social-link {
  color: var(--footer-text, #64748b);
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  color: var(--primary, #6366f1);
  transform: translateY(-2px);
}

/* Theme variables */
body.theme-dark {
  --footer-bg: #1e2130;
  --border-color: #2a2f42;
  --footer-text: #64748b;
  --dot-color: #2a2f42;
  --primary: #6366f1;
}

body.theme-light {
  --footer-bg: #ffffff;
  --border-color: #e2e8f0;
  --footer-text: #64748b;
  --dot-color: #e2e8f0;
  --primary: #6366f1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .footer-content {
    padding: 0 15px;
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }
  
  .footer-dot {
    display: none;
  }
  
  .footer-link {
    padding: 5px 0;
  }
  
  .footer-social-links {
    margin-top: 10px;
    margin-left: 0;
  }
}