@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  overflow-x: hidden;
  width: 100%;
}

input[type="datetime-local"] {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-width: 100%;
}

a {
  text-decoration: none;
  word-break: break-word;
}

/* Basic responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive tables wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}