body {
  font-family: "Roboto", sans-serif;
  background: #f5f5f5;
  padding: 20px;
}

.page-container {
  max-width: 1000px;
  margin: auto;
}

.page-title {
  font-weight: 500;
  margin-bottom: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card h2 {
  font-size: 16px;
  margin-bottom: 12px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button-row .btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.button-row .btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
.button-row .btn.btn-primary {
  background: #1a73e8;
  color: #fff;
}
.button-row .btn.btn-secondary {
  background: #5f6368;
  color: #fff;
}
.button-row .btn.btn-outline {
  background: transparent;
  border: 1px solid #5f6368;
  color: #5f6368;
}
.button-row .btn.btn-error {
  background: #dc3545;
  color: #fff;
}
.button-row .btn.btn-warning {
  background: #ffc107;
  color: #212529;
}
.button-row .btn.btn-info {
  background: #17a2b8;
  color: #fff;
}
.button-row .btn.btn-icon {
  background: #1a73e8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 16px;
}

.input-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.input-row input {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  flex: 1;
  min-width: 150px;
}
.input-row input:focus {
  border-color: #1a73e8;
  outline: none;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

/* Table Material */
.flex-table-container {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  margin-top: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group * {
  box-sizing: border-box;
}
.form-group .form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 150px;
}
.form-group .form-field input,
.form-group .form-field select,
.form-group .form-field textarea {
  width: 100%;
  padding: 16px 12px 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  background: none;
  resize: vertical;
}
.form-group .form-field input:focus,
.form-group .form-field select:focus,
.form-group .form-field textarea:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.15);
}
.form-group .form-field input:not(:-moz-placeholder) + label, .form-group .form-field select:not(:-moz-placeholder) + label, .form-group .form-field textarea:not(:-moz-placeholder) + label {
  top: 4px;
  left: 10px;
  font-size: 12px;
  color: #1a73e8;
  background: #fff;
  padding: 0 4px;
}
.form-group .form-field input:focus + label, .form-group .form-field input:not(:placeholder-shown) + label,
.form-group .form-field select:focus + label,
.form-group .form-field select:not(:placeholder-shown) + label,
.form-group .form-field textarea:focus + label,
.form-group .form-field textarea:not(:placeholder-shown) + label {
  top: 4px;
  left: 10px;
  font-size: 12px;
  color: #1a73e8;
  background: #fff;
  padding: 0 4px;
}
.form-group .form-field textarea {
  padding-top: 18px;
}
.form-group .form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
}
.form-group .form-field label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #666;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
}
.form-group .form-field.checkbox-field {
  flex-direction: row;
  align-items: center;
}
.form-group .form-field.checkbox-field input[type=checkbox] {
  margin-right: 10px;
  width: auto;
  height: auto;
  padding: 0;
}
.form-group .form-field.checkbox-field label {
  position: static;
  font-size: 14px;
  color: #212529;
  margin: 0;
}/*# sourceMappingURL=index.css.map */