.list-container {
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;

}

.list-item {
    /* background: linear-gradient(90deg,#255d73 18.23%,#4476a3); */
    margin-bottom: 5px;
    overflow: hidden;
    border-radius: 10px;
}

.list-header {
    /* background-color: #f0f0f0; */
    color: antiquewhite;
    background: linear-gradient(90deg,#255d73 18.23%,#4476a3);
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-content {
    padding: 10px;
    background-color: #dfe6c8;

}

