html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: #f8f9fa;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

/* Tilføj flotte styles */
.card {
  transition: transform 0.2s;
  border: none;
}

.card:hover {
  transform: translateY(-5px);
}

.card-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #3498db;
  border-color: #3498db;
  padding: 0.5rem 2rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}

.display-4 {
  color: #3498db;
  font-weight: 600;
}

.lead {
  color: #34495e;
}

.blockquote-footer {
  color: #7f8c8d;
}

.navbar {
  background-color: #fff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 600;
  color: #2c3e50 !important;
}

.spinner-border {
  color: #3498db;
}

/* Tilføj animation til refresh knappen */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#refresh-button .fas {
  margin-right: 0.5rem;
}

#refresh-button:active .fas {
  animation: spin 1s linear;
}