.btn  {
  background-color: #0095ff;
  border: 1px solid transparent;
  border-radius: 3px;
  box-shadow: rgba(255, 255, 255, .4) 0 1px 0 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI","Liberation Sans",sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.15385;
  margin: 0;
  outline: none;
  padding: 8px .8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}

.btn :hover,
.btn :focus {
  background-color: #07c;
}

.btn :focus {
  box-shadow: 0 0 0 4px rgba(0, 149, 255, .15);
}

.btn :active {
  background-color: #0064bd;
  box-shadow: none;
}










@media (max-width: 768px) {
    .btn {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 10px; /* Add some space between buttons */
    }
}