:root {
    --background-color: #f0f0f0; /* Angenehmes warmes Grau */
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: var(--background-color); /* Use the same background color */
    position: relative;
}

.icon-link {
    text-decoration: none;
}

.icon {
    width: 24px;
    height: 24px;
}

.icon-link:first-child {
    display: flex;
    align-items: center;
}

.icon-link:first-child .icon {
    width: 54px; /* 1.5 times larger */
    height: 54px; /* 1.5 times larger */
}

.scrollable-list {
    max-height: 200px;
    overflow-y: auto;
}