.bsic-wrap {
  max-width: 920px;
  margin: 24px auto;
  padding: 20px;
  border: 1px solid #d8e3e0;
  border-radius: 10px;
  background: linear-gradient(180deg, #fcfffe 0%, #f4fbf9 100%);
}

.bsic-subtitle {
  color: #2f5f58;
}

.bsic-entry-card,
#bsic_form {
  background: #ffffff;
  border: 1px solid #d9e7e3;
  border-radius: 8px;
  padding: 14px;
  margin-top: 14px;
}

.bsic-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.bsic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px 16px;
}

.bsic-grid input,
.bsic-grid textarea,
.bsic-grid select,
.bsic-row input,
.bsic-row select,
.bsic-section select,
.bsic-entry-card input,
.bsic-entry-card select {
  width: 100%;
  padding: 8px;
  border: 1px solid #c7d9d4;
  border-radius: 6px;
}

.bsic-section {
  margin-top: 14px;
  padding-top: 8px;
  border-top: 1px solid #e5efed;
}

.bsic-package-group {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bsic-package-title {
  font-weight: 600;
  color: #2f5f58;
}

.bsic-package-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.bsic-package-price {
  font-weight: 600;
}

.bsic-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 8px 12px;
}

.bsic-schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.bsic-schedule-table th,
.bsic-schedule-table td {
  border: 1px solid #d7e6e2;
  text-align: center;
  padding: 6px;
}

.bsic-schedule-table thead th {
  background: #f2faf8;
  color: #2f5f58;
  font-weight: 700;
}

.bsic-schedule-table tbody th {
  background: #f8fcfb;
  text-align: left;
  white-space: nowrap;
}

.bsic-meal:disabled {
  filter: grayscale(1);
  opacity: 0.55;
  cursor: not-allowed;
}

.bsic-price-box {
  margin-top: 14px;
  padding: 10px;
  background: #eaf7f3;
  border: 1px solid #c4e2d8;
  border-radius: 6px;
}

.bsic-success,
.bsic-error {
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
}

.bsic-success {
  background: #eaf7ea;
  color: #1d5e1d;
  border: 1px solid #b7dcb7;
}

.bsic-error {
  background: #fff1f1;
  color: #8a2323;
  border: 1px solid #efc3c3;
}

@media (max-width: 780px) {
  .bsic-grid {
    grid-template-columns: 1fr;
  }

  .bsic-checkbox-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .bsic-schedule-table {
    display: block;
    overflow-x: auto;
  }
}
