/**
 * APBx Core CSS
 * Styles for both admin and front-end
 */

.apbx-core {
  /* Core styles that work on both admin and front-end */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}

.apbx-core .core-element {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.apbx-core .core-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.apbx-core .core-content {
  color: #555;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .apbx-core .core-element {
    padding: 10px;
    margin: 5px 0;
  }
  
  .apbx-core .core-title {
    font-size: 1.1em;
  }
}
