.container-wall {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.wall-content {
  width: 97.5%;
  padding: 30px;
  color: #fff;
}
#header {
  display: flex;
  justify-content: center;
}
#search {
  width: 40%;
  display: none;
}
h3 {
  font-size: 25px;
}
.your-team, .teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.create {
  background-color: transparent;
  font-size: 22px;
  border-style: none;
  color: #fff;
  font-weight: 400;
  margin: 5px;
  cursor: pointer;
}
table {
  width: 100%;
  height: 80%;
}
tr {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.team {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 5px 0px;
}
.match {
  margin: 1px 0px;
}
#matchDate {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#date, #schedule {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 70%;
    color: #0C3412;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  tbody {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  .match-content, .team-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    color: #156020;
    width: fit-content;
    padding: 15px;
    border: 1px solid transparent;
    border-color: #D0CECE !important;
    border-radius: 5px;
    border-style: solid !important;
    border-width: 1px !important;
    margin-right: 5px; 
    margin-bottom: 5px;
  }
  .match-date p {
    font-weight: bold;
    color: #D8B53C;
  }
  .match-rivals p {
    font-weight: bold;
    font-size: 18px;
  }
  .match-address {
    display: flex;
    justify-content: flex-start;
  }
  .match-organizer {
    font-size: 12px;
  }
  .containerTeam {
    display: flex;
    justify-content: flex-start;
  }
  .takePart {
    width: 40%;
  }
  .join {
    width: 120px;
  }
  @media screen and (max-width: 800px) {
    .wall-content {
      background-color: transparent;
      padding: 0;
      margin: 10px;
    }
    #search {
      min-width: 55%;

      display:none;
    }
    h3 {
      font-size: 19px;
    }
    .create {
    font-size: 16px;
    }
    .access-profile {
      padding: 15px 0px;
      float: right;
    }
    .btn-profile {
      padding: 0;
      margin-right: 15px;
    }
    a {
      padding: 0;
    }
    nav {
      padding: 20px 0px 20px 0px;
    }
  }