* {
  direction: rtl;
}
body {
  background-color: #1a0042;
  font-family: tajawal;
}
.countainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tasks-table {
  margin-top: 130px;
  width: 60%;
  background-color: rgb(239, 239, 239);
  min-width: 500px;
}

.header {
  width: 100%;
  color: white;
  background-color: #512d8f;
  text-align: center;
  padding: 9px 0px;
}
button {
  border: none;
  font-size: 20px;
  box-shadow: 0px 3px 5px rgba(168, 168, 168, 0.38);
}
.circular {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 2.5;
}
.add-btn {
  float: right;
  background-color: white;
  margin-right: 10px;
}

.tasks {
  padding: 20px;
}

.task {
  display: flex;
  background-color: #ffffff;
  padding: 4px;
  border-bottom: solid black 2px;
  transition: box-shadow 0.2s;
}
.done{
  background-color: #befc91;
}

.task:hover {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.566);
}
.task-info {
  width: 70%;
}

.task-action {
  width: 30%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.white-color {
  color: white;
}
