.error-text { 
    color: red; 
}
.error-text:empty {
  display: none;
}

.error-text-general {
    margin:10px auto 0;
    text-align: center;
}

.shop-name{
  margin-left: auto; 
  white-space: nowrap;
  font-weight: bold;
  font-size: var(--mh--font-size--sm);
}

.bids-error{
  display: block;
  white-space: pre-line;
  margin-top: 10px;
}

.task-price-text{
  text-align: right;
  display: block;
}

.your-work{
  padding-top:  20px;
  font-size: 18px;
  font-weight: bold;
}

.your-temporary {
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
  text-align-last: left;
  font-size: 16px;
  border: 1px solid #cccccc;
  height: 46px;
  background-color: #fff;
  box-sizing: border-box;
  min-width: 200px;
  width: 100%;
}

.c-form-temporary__date {
  max-width: 550px;
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: 100%;
}

.admin-new{
  color: red;
  font-weight: bold;
}

.scroll-box {
  width: auto;
  height: 400px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: white;
  user-select: none;
}

/* rnet-single-info
============================= */
.admin-single__form.c-form {
  margin-top: var(--mh--space--sm);
  border-bottom: 2px solid var(--mh--color--grayscale-900);
}
.admin-single__form.c-form:first-child {
  margin-top: 0;
}
.admin-single__form.c-form .c-form__set {
  border-bottom: 1px dotted var(--mh--color--grayscale-500);
}
.admin-single__form.c-form .c-form__set:last-child {
  padding-bottom: 20px;
}
@media (width >= 768px ) {
  .admin-single__form.c-form .c-form__set {
    padding-block: 20px;
  }
}

/* loader
============================= */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}