
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff8f0;
    color: #333;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e0f0e0;
    padding: 10px 20px;
}

.topbar img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}


.logo {
    font-weight: bold;
    font-size: 1.3em;
    color: #A372F2;
}

.logo span {
    color: #A372F2;
}

.profile-icon {
    font-size: 1.5em;
}

.search {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #A0CDB4;
    font-size: 1em;
}

.diy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
}

.diy-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.diy-item img {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    border-radius: 4px;
}

.diy-item h4 {
    margin: 0;
    font-size: 1em;
}

.diy-item p {
    margin: 2px 0 0 0;
    font-size: 0.9em;
}

.bottombar {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background: #e6f2e6;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.bottombar img {
    width: 28px;
    height: 28px;
}

.diy-item-link {
    text-decoration: none;
    color: inherit;
}

.diy-content {
    padding-bottom: 80px; /* Platz für die fixe Navbar */
    min-height: calc(100vh - 60px); /* 100% Höhe minus Navbar */
    padding-bottom: 80px;
}

