/* 
 * ZestPHP Web - Custom CSS
 * This file contains custom styles for your ZestPHP Web application
 */

/* Custom utility classes */
.zest-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Custom components */
.zest-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.zest-button {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.zest-button:hover {
  background-color: #2563eb;
}

/* Form elements */
.zest-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.zest-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .zest-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
