

/* Card component - minimal styling */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.card-content {
  margin-bottom: 1rem;
}

.card-footer {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Alert component - minimal styling */
.alert {
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid transparent;
}

.alert-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.alert-description {
  font-size: 0.875rem;
}

.alert-success {
  background-color: #dcfce7;
  border-color: #bbf7d0;
  color: #14532d;
}

.alert-info {
  background-color: #dbeafe;
  border-color: #bfdbfe;
  color: #1e3a8a;
}

.alert-warning {
  background-color: #fef3c7;
  border-color: #fde68a;
  color: #713f12;
}

.alert-error {
  background-color: #fee2e2;
  border-color: #fecaca;
  color: #7f1d1d;
}

/* Input component - minimal styling */
.input {
  display: flex;
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--surface);
  transition: var(--transition);
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Label component */
.label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--text-primary);
}

/* Select component - minimal styling */
.select {
  display: flex;
  height: 2.5rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--surface);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
}

.select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Additional responsive utilities */
.d-none {
  display: none !important;
}

@media (max-width: 768px) {
  .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .card-title {
    font-size: 1.125rem;
  }
  
  .input,
  .select {
    height: 2.25rem;
    font-size: 0.8125rem;
  }
}

/* Utility classes */
.w-100 {
  width: 100% !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.text-center {
  text-align: center !important;
}
