:root {
  --iptYellow: #fbd14b;
  --iptTeal: #6ca6ab;
  --iptBlue: #0284bd;
}

.btn-primary {
  background-color: var(--iptBlue);
  border-color: var(--iptBlue);
}

.btn-primary:hover {
  background-color: var(--iptTeal);
  border-color: var(--iptTeal);
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

#dt-length-0 {
  width: 60px;
}

svg#EditSvg {
  width: 1.2rem;
  height: 1.2rem;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn.btn-primary>svg {
  width: 1.7rem;
  height: 1.7rem;
}

.btn.btn-primary>svg>path {
  fill: #ffffff;
}

.btn.btn-primary:hover>svg>path {
  fill: #d1d0d0;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.divLogo {
  width: 20rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 3rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

div#divDateTime {
  width: 100%;
  margin: auto;
  border: solid;
  max-width: 20rem;
  margin-bottom: 1rem;
}

div#divTime {
  width: 100%;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0rem;
}

div#divDate {
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 1.3rem;
}

#cmdCome {
  background-color: teal;
  color: white;
}

#cmdCome:hover {
  background-color: #005e5e;
}

.divInput {
  min-width: 9rem !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.divButtons {
  max-width: 20rem;
  flex-wrap: nowrap;
  display: flex;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.InputRow {
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  max-width: 15rem
}

.table tbody tr.highlight td {
  background-color: #ddd;
}

.MethodButtons {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto
}

.time-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.time-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.time-display {
  font-size: 3rem;
  font-weight: bold;
  color: #343a40;
}

.date-display {
  font-size: 1.5rem;
  color: #6c757d;
  margin-top: 10px;
}

.time-text {
  margin: 0;
}

.date-text {
  margin: 0;
}

.time-info-container {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  /* max-width: 24rem; */
  margin: 4rem auto;
}

@media (min-width: 768px) {
  .time-info-container {
    max-width: 30rem;
  }
}

@media (max-width: 767px) {
  .time-info-container {
    position: fixed;
    top: 0;
    left: 0.5vw;
    width: 99vw;
    height: 100vh;
    margin: 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


.divButtons .btn {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.divButtons .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.divButtons .btn svg {
  width: 2rem;
  height: 2rem;
}

.divButtons .btn svg path {
  fill: #ffffff;
}

.action-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.action-links .btn {
  width: 20rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
}