body {
  margin: '0 auto';
  font-family: Arial, sans-serif;
}

.main-content {
  background-color: var(--bg-body);
  padding-top: 5px;
  display: flex;
  flex-direction: row;
  margin-top: var(--layout-header-height);
}

#container {
  width: 100%;
  padding: 0;
}

.title-section {
  margin-bottom: 40px;
}

.title-section .title {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-black);
}

.title-section .subtitle {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-secondary);
}


.full-width {
  width: 100%;
}

nav .breadcrumb-item {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--breadcrumb-text);
}

nav .breadcrumb-item.active {
  color: var(--breadcrumb-active);
}

nav .breadcrumb-item:has(> .dot-icon) {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-right: var(--bs-breadcrumb-item-padding-x);
}

nav .dot-icon {
  width: 6px;
  height: 6px;
  background-color: var(--breadcrumb-active);
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.star-rating .fa {
  color: #ddd;
}
.star-rating .checked {
  color: #ffc107;
}
.avg-score {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #555;
}

.divider {
  width: 100%;
  border-top: 1px dashed #555;
  margin: 5px 0;
}

.divider.normal {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-default) !important;
}

.error {
  color: var(--text-error) !important;
}

.helper-text {
  font-size: 0.875rem;
  margin-left: 0.5rem;
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

.helper-text i {
  margin-right: 0.25rem;
}

.helper-text.error {
  color: var(--text-error);
}

.helper-text.error i {
  color: var(--text-error);
}

.helper-text.success {
  color: var(--text-success);
}
.helper-text.success i {
  color: var(--text-success);
}

.image-add-container {
  position: relative;
  width: 100px;
  height: 100px;
  padding: 10px;
  border: 1px dashed #E9ECEE;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.image-add-container .image-add-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F7F8F9;
  border-radius: 8px;
}

.image-add-container .image-add-bg img {
  width: 22px;
  height: 22px;
}

.image-add-container .image-add-bg span {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  color: #919EAB;
}

input:read-only {
  color: var(--text-secondary) !important;
}

button.btn-submit {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 12px;
  gap: 8px;
  background: var(--bg-button-submit);
  border-radius: 8px;
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-button-submit);
  max-height: 36px;
}

button.btn-submit:hover {
  background: var(--bg-button-submit-hover);
  color: var(--text-button-submit);
}

button.btn-submit:disabled {
  background: var(--bg-button-submit-disabled);
  color: var(--text-secondary);
  cursor: not-allowed;
}

button.btn-submit:active {
  background: var(--bg-button-submit-active);
  color: var(--text-button-submit);
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .main-content {
    margin-left: 0;
  }

  .title-section {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  #container {
    padding-left: 280px;
  }

  .title-section {
    padding-left: 50px !important;
  }
}
