.free-case-task-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 5px 15px 15px 15px;
  background-color: #202020; /* Более темный и контрастный фон */
  border-radius: 23px;
}

.free-case-main-button {
  width: 100%;
  padding: 18px 15px;
  border: none;
  border-radius: 10px; /* Более округлые углы для кнопки */
  background-color: #444;
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.free-case-main-button.blue-bg {
  background-color: #0098EA;
  color: #fff;
}

/* .free-case-main-button:hover:not(:disabled) {
  background-color: #555;
} */

.free-case-main-button:disabled {
  background-color: #1D2C34;
  color: #0098EA;
  cursor: not-allowed;
  opacity: 1;
}

.free-case-task-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  /* border-top: 1px solid #333; */
  color: #ccc;
}

.free-case-task-item:first-of-type {
  border-top: none;
}

.task-icon {
  /* width: 25px;  */
  height: 20px;
  /* filter: invert(70%); */
}

.task-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.task-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.task-text {
  flex-grow: 1;
}

.task-progress {
  color: #909090;
  font-size: 1em; /* Немного уменьшаем размер шрифта */
}

.task-arrow {
  width: 20px; /* Немного уменьшаем размер стрелки */
  height: 14px;
  filter: invert(70%);
}
