input[type="text"],
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.card {
  display: block;
  margin: 25px 0px;
  transition: box-shadow 0.15s ease 0s;
  border-bottom: 1px solid rgb(170, 170, 170);
  padding: 10px;
  box-shadow: rgb(85, 85, 85) 0px 2px 3.33333px;
  text-align: center;
}

.clock-image {
  display: inline-block;
  vertical-align: text-top;
  height: 1em;
}

.pending {
  background-color: rgb(208, 233, 179);
}

.pending:hover {
  box-shadow: rgb(85, 85, 85) 0px 6px 10px;
  cursor: pointer;
}

.main-container {
  margin: 25px;
}

.push-notification-button {
  padding: 15px 32px;
  font-size: 16px;
  cursor: pointer;

  border-radius: 3px;
  background-color: white;
  color: black;
  border: 2px solid #555555;

  -webkit-transition-duration: 0.4s;
  /* Safari */
  transition-duration: 0.4s;
}

.push-notification-button:hover {
  background-color: black;
  color: white;
}

.disabled-button {
  opacity: 0.6;
  cursor: not-allowed;
}

.dialog-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 540px;
  z-index: 9999;
  border-radius: 10px;
  background-color: #7c7d7e;
}

.hidden {
  display: none;
}

.dialog-header {
  background-color: #604667;
  color: white;
  font-size: 1.6em;
  padding: 10px;
  margin: 10px 10px 0px 10px;
}

.dialog-body {
  background-color: white;
  color: black;
  font-size: 1.1em;
  padding: 10px;
  margin: 0px 10px 0px 10px;
}

.dialog-footer {
  background-color: #f2f2f2;
  text-align: right;
  padding: 10px;
  margin: 0px 10px 10px 10px;
}

.dialog-button {
  background-color: #604667;
  color: white;
  font-size: 1.1em;
  padding: 5px;
  margin-left: 5px;
  border: 0px;
  cursor: pointer;
}

#dialog-body-notification-title-label {
  font-size: 1.2em;
  margin-block-start: 0em;
  margin-block-end: 0.5em;
}

#dialog-body-notification-content-label {
  font-size: 1.2em;
  margin-block-end: 0.5em;
}

#dialog-body-notification-title {
  margin-block-start: 0em;
}

#dialog-body-notification-content {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

.bold {
  font-weight: bold;
}

* {
  font-family: tahoma, arial;
}

body {
  background-color: #e8e8e8;
}

.main-container {
  max-width: 500px;
  margin: 0 auto !important;
}

#new-notification {
  padding: 20px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #ccc;
}

.main-container label {
  font-size: 14px;
  margin-top: 20px;
  display: block;
}

input[type="text"] {
  font-size: 15px;
}

.card {
  background-color: #fff;
  box-shadow: none !important;
  border-radius: 3px;
  border: 1px solid rgb(170, 170, 170);
}

input#message-radius {
  width: 200px;
}

.divider {
  display: block;
  margin: 30px 0 30px;
  height: 1px;
  background-color: #9a9a9a;
}

#schedule-notification-button {
  float: right;
}

#send-notification-button {
  background-color: #604667;
  color: #fff;
}

h1 {
  margin-top: 50px;
}

.dialog-box {
  margin-left: -150px !important;
  width: 300px !important;
  position: fixed !important;
  left: 50% !important;
  top: 20% !important;
  transform: none !important;
  min-width: 300px !important;
}
