.address-container {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin-top: 20px;
}

.address-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.address-line {
  margin-bottom: 5px;
}

.address-phone {
  margin-top: 20px;
}

.schedule-container {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin-top: 20px;
  }

  .schedule-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }

  .schedule-table th, .schedule-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
  }

  .schedule-table th {
    background-color: #f2f2f2;
    font-weight: bold;
  }


  .address-and-schedule-container {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: flex-start;
          margin-top: 0px;
        }
