.rechnung-liste {
display: flex;
flex-direction: column;
gap: 20px; margin-top: 20px;
}
.rechnung-zeile {
display: block;
background: #fff;
border: 1px solid #ddd;
border-radius: 6px;
padding: 14px 20px;
text-decoration: none;
color: #000;
transition: background 0.2s ease;
}
.rechnung-zeile:hover {
background: #f5f5f5;
}
.rechnung-icon {
margin-right: 10px;
font-size: 20px;
}
.rechnung-label {
font-weight: 600;
font-size: 16px;
}