html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main.container {
  flex: 1; 
}

body {
    min-height: 100vh;
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Ubuntu", sans-serif !important;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0073481a; 
  z-index: -1; 
}

.card {
    border-radius: 25px !important;
}

td.destaque {
  outline: 2px solid #007bff;
  background-color: #d0e7ff;
  transition: background-color 0.4s ease;
}

button {
  border-radius: 1rem !important;
}

input {
  border-radius: 2rem;
  border: 1px solid #cecccc;
  padding-left: 1rem;
  padding-right: 1rem;
}

#calendario tbody {
  opacity: 1;
  transition: opacity 0.4s ease;
}

#calendario tbody.fade-out {
  opacity: 0;
}

#calendario-container {
  max-width: 500px;
  margin: auto;
  text-align: center;
  font-family: sans-serif;
}

.navegacao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  width: 14.2%;
  height: 60px;
  border: 1px solid #ccc;
  vertical-align: middle;
}

td.celebracao {
  background-color: #ffeeba;
  font-weight: bold;
  cursor: pointer;
}

footer {
  background-color: #007348;
  color: #ffffff;
}

footer a {
  text-decoration: none;
}

@media screen and (max-width: 630px) {
  body {
    background-size: inherit;
    background-position: left;
  }
}
