/* LazyBooks Custom Styles */

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: #f8f9fa;
}

/* Custom Foundation Overrides */
.top-bar {
  background-color: #2c3e50;
}

.top-bar .menu-text a {
  color: #ecf0f1;
  font-weight: bold;
  font-size: 1.2rem;
}

.top-bar .menu a {
  color: #ecf0f1;
}

.top-bar .menu a:hover {
  color: #3498db;
}

/* Dashboard Cards */
.dashboard-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.dashboard-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

/* Form Styles */
.form-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-top: 2rem;
}

/* Button Styles */
.button.primary {
  background-color: #3498db;
}

.button.primary:hover {
  background-color: #2980b9;
}

.button.success {
  background-color: #27ae60;
}

.button.success:hover {
  background-color: #229954;
}

.button.alert {
  background-color: #e74c3c;
}

.button.alert:hover {
  background-color: #c0392b;
}

/* Alert Styles */
.alert-box {
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Responsive Utilities */
.show-for-small-only {
  display: none;
}

@media screen and (max-width: 39.9375em) {
  .show-for-small-only {
    display: block;
  }
  
  .hide-for-small-only {
    display: none;
  }
}