.progress {
  max-width: 75rem;
  margin: 2.5rem auto;
  padding: 0 1.25rem;
}
.progress--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .progress--split {
    grid-template-columns: 350px 1fr;
    align-items: start;
  }
}

.progress-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}
.progress-card__title {
  font-size: 1.25rem;
  color: #8a2be2;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.progress-card__subtitle {
  font-size: 0.875rem;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.progress-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.progress-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.progress-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2c3e50;
}
.progress-form__input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.progress-form__input:focus {
  border-color: #8a2be2;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}
.progress-form__textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  min-height: 6.25rem;
  resize: vertical;
  font-family: inherit;
}
.progress-form__textarea:focus {
  border-color: #8a2be2;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}
.progress-form__button {
  background-color: #8a2be2;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  width: 100%;
  margin-top: 0.5rem;
}
.progress-form__button:hover {
  background-color: #7d1dd6;
}
.progress-form__button:active {
  transform: scale(0.98);
}
.progress-form__button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.competition__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.competition__table thead tr {
  border-bottom: 2px solid #e2e8f0;
}
.competition__table thead th {
  text-align: left;
  padding: 0.75rem;
  color: #7f8c8d;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.competition__table tbody tr {
  border-bottom: 1px solid #f3f5f9;
  transition: background-color 0.2s;
}
.competition__table tbody tr:last-child {
  border-bottom: none;
}
.competition__table tbody tr:hover {
  background-color: #fcfcfc;
}
.competition__table tbody td {
  padding: 0.875rem 0.75rem;
  color: #2c3e50;
  vertical-align: top;
}
.competition__badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background-color: rgba(138, 43, 226, 0.1);
  color: #701ac0;
  font-weight: 600;
  font-size: 0.75rem;
}/*# sourceMappingURL=competition.css.map */