/* CSS Document */

/* BAKGRUNNER */

.sundebakgrunn {
	background: radial-gradient(#27272a,  #121212, #121212);
}


.sundegrad {
	background: linear-gradient(135deg, #f6c85f, #f6c85f, #cfab51);
}

/* TEKST */

.tekstgul1 {
	color: #f6c85f;
}

.tekstgul2 {
	color: #79642e;
}


/* KNAPP */

.knappgul {
	background-color: #f6c85f;
	color: #121212;
}

.knappgul:hover {
	background-color: #e2ba58;
	color: #121212;
}

.knappsunde {
	background-color: #7b6330;
	color: #e8e8e8;
}

.knappsunde:hover {
	background: #282828;
	color: #f6c85f;
}

.knapplag {
	background-color: #fac93f;
	color: #1e1e1e;
}

.knapplag:hover {
	background: #f9c226;
	color: #1e1e1e;
}


/* TABELLER */
.table-container {
  width: 100%;
  
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.0); /* Gjennomsiktig hvit bakgrunn */
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.0);
}

/* Tabellstiler */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #121212;
  color: #121212;
}

th {
  background-color: rgba(255, 255, 255, 0.0);
  color: #121212;
}