/* === GENERELLE STILER === */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* === NAVBAR === */
.navbar {
    background-color: #007bff;
    padding: 10px;
}

.navbar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 12px;
}

.navbar a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* === KNAPPER === */
.btn {
    border-radius: 4px;
}

.btn-primary {
    background: #007bff;
    border-color: #0056b3;
}

.btn-danger {
    background: #dc3545;
}

/* === TABELLER === */
.table {
    background: white;
    border-radius: 5px;
    overflow: hidden;
}

.table th {
    background: #007bff;
    color: white;
}

.table td, .table th {
    padding: 10px;
    border: 1px solid #ddd;
}

/* === SKJEMA === */
.form-control {
    border-radius: 4px;
}

input[type="text"], input[type="email"], input[type="password"], select, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

