.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 5%;
}

.salons .salons-list {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: center;
    flex-wrap: wrap;
}
.salons .salons-list .salon {
    text-align: center;
    border: 1px solid black;
    margin: 1rem;
    padding: 2rem;
    background: aliceblue;
    width: 17%;
    text-decoration: none;
    color: #000;
}
.salons .salons-list .salon:hover {
    cursor: pointer;
    background: lightblue;
}

.hairdressers-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}
.hairdressers-list .hairdresser {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    border: 1px solid black;
}
.hairdressers-list .hairdresser > .hairdresser-info {
    padding: 1rem;
    font-size: 1.2rem;
}
.hairdressers-list .hairdresser > .hairdresser-info > span{
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}
th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 8px 10px;
}

td:last-of-type {
  text-align: center;
}

tbody > tr:nth-of-type(even) {
  background-color: rgb(237 238 242);
}
#hairdresser-0 {
    display: none;
}
.modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: #0000000d;
    width: 100vw;
    height: 100vh;
}
.modal-container.active {
    display: block;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
}
#customer-0 {
    display: none;
}
.salon-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.cutomer-form form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 14rem;
}
.cutomer-form form .input-group {
    display: flex;
    flex-direction: column;
    margin: 0.5rem;
}
.error{
    font-size: 0.9rem;
    color: red;
    text-align: center;
    margin-top: 0.5rem;
}
button:hover{
    cursor: pointer;
}
.confirm-action-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.confirm-action-form > span {
    font-size: 1.1rem;
    margin: 1rem;
}
.confirm-action-form input[type="submit"] {
    margin: 0.5rem;
    font-size: 1rem;
}
.confirm-action-form input[type="submit"]:hover {
    cursor: pointer;
}