* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

button {
  font-size: 14px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 14px;
  background-color: transparent;
  cursor: pointer;
}

.container {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 50%;
  margin-top: 100px;
  justify-content: center;
  align-items: center;
}

.container-btn {
  width: 200px;
  align-self: flex-end;
  margin-bottom: 50px;
}

.tickets-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ticket {
  display: flex;
  flex-direction: column;

  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  cursor: pointer;
}

.ticket-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tickets-container > *:not(:last-child) {
  border-bottom: none;
}

.left-part,
.right-part {
  display: flex;
  align-items: center;
  gap: 20px;
}

.checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}

.checkbox:checked {
  background-image: url(fefa955040f3b9b7ef4e.png);
  background-repeat: no-repeat;
  background-size: 55%;
  background-position: center;
}

.ticket-btns {
  display: flex;
  gap: 5px;
}

.ticket-description {
  display: none;
}

.ticket-description.active {
  display: block;
  margin-top: 26px;
  margin-left: 50px;
}

.edit-btn,
.delete-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.pencil {
  width: 14px;
}

.ticket-form {
  display: none;
}

.ticket-form.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 30%;
  gap: 20px;
  width: 50%;
  border: 1px solid #ccc;
  border-radius: 14px;
  background-color: white;
  padding: 20px;
}

.form-title {
  font-size: 20px;
  align-self: center;
}

.form-label {
  display: block;
}

.form-input {
  width: 100%;
  min-height: 40px;
  outline: none;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.form-input.invalid {
  outline: 1px solid red;
}

.form-textarea {
  font-size: 14px;
  width: 100%;
  min-height: 70px;
  outline: none;
  display: block;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.buttons {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.close-btn {
  width: 95px;
}

.submit-btn {
  width: 55px;
}

