a {
    text-decoration: none; 
    color: inherit; 
}
body { 
    font-family: Arial, sans-serif;
    margin: 20px; 
}
table { 
    border-collapse: collapse; 
    width: 100%; 
}
th, td { 
    border: 1px solid #ccc; 
    padding: 8px; 
    text-align: left; 
}
th { 
    background-color: #f2f2f2; 
}
img { 
    max-width: 50px; 
}
.container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 gelijke kolommen */
}

.left-column { 
    padding: 20px;
}
.left-column table tr {
    cursor: pointer;          /* verandert muis naar handje */
    transition: background 0.2s; /* smooth effect */
}

.left-column table tr:hover {
    background-color: #d0e6f7; /* lichte blauwe kleur bij hover */ 
}
.right-column { 
    padding: 20px; 
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e04343;
    padding: 10px 20px;
    color: #fff;
}

.dashboard-header .left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}
.dashboard-header .right {
    display: flex;
    align-items: center;
    gap: 10px; /* space between username and logout */
}

.navbar_username {
    font-size: 1rem;
    color: #fff;
}

.dashboard-header .logo {
    max-width: 10rem;
    height: 40px;
    width: auto;
    object-fit: contain;
}

.dashboard-header .right img {
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s;
}

.dashboard-header .right img:hover {
    transform: scale(1.1);
}
