body {
  height:100%;
  font-family: Helvetica;
  color: #000000;
}
    
#kalender { 
  display: grid; 
  grid-template-columns: repeat(7, 1fr); 
  gap: 5px; 
  margin-top: 1rem;
}



.color-black{
    color: #000000;
}

.color-white{
    color: #FFFFFF;
}

.nav-item a:hover {
  color: #beb2da;
}

.nav-item a:focus {
  color: #beb2da;
}

.color-leaf{
    color: #5A7D38 !important;
}

.color-soft-red{
    color: #A64936 !important;
}

.color-beige {
    color: #F5EAD6 !important;
}

.color-mill{
    color: #2e2b26 !important;
}

.bg-beige {
    background-color: #F5EAD6 !important;
}

.bg-raps {
    background: #FFCC00 !important;
}

.bg-leaf {
    background: #5A7D38 !important;
}

.bg-mill {
    background: #2E2B26 !important;
}

.bg-soft-red {
    background: #A64936 !important;
}

.bg-accent {
    background-color: #8A79AF !important;
}

.bg-accent2 {
    background-color: #4A7C84 !important;
}

.card {
  background-color: #f8f9fa;
}

.card h2 {
  font-weight: bold;
}

.form-control[readonly] {
  background-color: #e9ecef;
}

  .dag {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
  min-height: 50px;
  font-size: 14px;
}
@media (max-width: 576px) {
  #kalender {
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }
  .dag {
    padding: 6px;
    font-size: 12px;
  }
}

.bokad {
  background-color: #dc3545;
  color: white;
  cursor: default;
}

.ledig:hover {
  background-color: #d1e7dd;
}

#popup {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  z-index: 9999;
  max-width: 600px;
  width:80%;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

#popup-content button {
  margin-top: 10px;
}

.login-form {
  max-width:400px;
  margin:auto;
}