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

.section-title {
    padding: 10px 15px 5px 15px;
    color: #A0CDB4;
    font-size: 1.2em;
    margin: 15px 0 5px 0;
    font-weight: 500;
}

.tag-row {
    display: flex;
    gap: 10px;
    padding: 0 15px;
}

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

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 15px 0;
}

.list-button {
    background-color: #D8C3B9;
    margin: 10px 15px;
    padding: 12px;
    border-radius: 12px;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-button.new-list {
    justify-content: center;
}

.edit-icon {
    font-size: 1em;
    color: #fff;
}

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

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