
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;
}

.search-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

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

.logo span {
    color: #A372F2;
}

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

.packliste-detail {
    padding: 10px 15px 80px 15px;
}

.back-link {
    display: block;
    color: #A0CDB4;
    margin: 10px 0;
    text-decoration: none;
    font-size: 1.1em;
}

.tags {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.tag {
    padding: 10px 20px;
    border-radius: 10px;
    background: #D8C3B9;
    color: white;
    font-weight: bold;
}

.tag.selected {
    background: #C251FF;
}

.tag.light {
    background: #e0f0e0;
    color: #888;
}

.edit-icon {
    text-align: right;
    margin: 5px 0;
    font-size: 1.3em;
    color: #C9A9A0;
}

.item-list {
    background: #D8C3B9;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.item-list label {
    font-size: 1.1em;
}

.add-button {
    background: #D8C3B9;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 12px;
    font-size: 1em;
    margin-bottom: 10px;
    cursor: pointer;
}

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

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