/* Generell stil */

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 20px;
}

/* Overskrifter */

h1, h2, h3 {
    color: #333;
}

/* Navigasjon */

nav {
    background: #2c3e50;
    padding: 10px;
    margin-bottom: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* Inputs */

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Buttons */

button {
    padding: 10px 15px;
    background: #3498db;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #2980b9;
}

/* Bok kort */

#bookList div {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* anmeldelser */

#reviews div {
    background: white;
    padding: 10px;
    margin-top: 10px;
    border-left: 4px solid #3498db;
}

/* admin */

#reports div {
    background: #ffe6e6;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* søk og filter */

#search {
    width: 60%;
    display: inline-block;
}

#category {
    width: 35%;
    display: inline-block;
}

.report{
border:1px solid #ccc;
padding:15px;
margin:10px 0;
border-radius:6px;
background:#ffe6e6;
}

.report button{
margin-right:10px;
}