
.staley-schedule-tools{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  margin:0 0 18px;
  padding:0;
  font-family:"Pro Sans","Arial","Helvetica",sans-serif;
}

.staley-schedule-tool{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:42px;
  padding:10px 16px;
  border:1px solid #d4d4d4;
  background:#fff;
  color:#111;
  font-size:13px;
  font-weight:800;
  line-height:1;
  text-decoration:none;
  text-transform:uppercase;
  box-sizing:border-box;
  transition:border-color .15s ease,background .15s ease,color .15s ease;
}

.staley-schedule-tool svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.staley-schedule-tool:hover{
  border-color:var(--staley-primary,#00853f);
  color:var(--staley-primary,#00853f);
}

.staley-schedule-tool-pdf{
  background:#111;
  border-color:#111;
  color:#fff;
}

.staley-schedule-tool-pdf:hover{
  background:var(--staley-primary,#00853f);
  border-color:var(--staley-primary,#00853f);
  color:#fff;
}

@media(max-width:600px){
  .staley-schedule-tools{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-bottom:14px;
  }

  .staley-schedule-tool{
    width:100%;
    min-height:40px;
    padding:9px 8px;
    font-size:11px;
  }

  .staley-schedule-tool svg{
    width:16px;
    height:16px;
  }
}
