.list-info-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3% 0;
    flex-direction: column;
}

.lists-title{
    font-size: 170%;
    font-weight: 600;
    margin: 0;
}

.profile-listing-img-holder .save-btn{
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 99;
    display: flex;
    padding: 6px;
}

.profile-listing-img-holder .save-btn-img{
    display: block;
    fill: rgb(255, 56, 92);
    height: 24px;
    width: 24px;
    stroke: rgb(255, 255, 255);
    stroke-width: 2;
    overflow: visible;
}

.unsaved-btn-img{
    fill: rgba(0, 0, 0, 0.5) !important;
}


.edit-btn-img{
    width: 14px;
    margin-right: 6px;
}

.no-lists{
    color: gray;
    text-align: center;
    margin: 8% auto;
    width: 80%;
}

/* campaigns tab */


.campaign-info-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3% 0;
}

.create-btn{
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 18px;
    font-size: 90%;
    font-weight: 600;
    cursor: pointer;
    margin: 0 0 0 1%;
    box-shadow: var(--lightBoxShadow);
    border-radius: 8px;
    transition-duration: 0.3s;
    background-color: var(--black);
    text-decoration: none;
    color: white;
}

.create-btn:hover{
    opacity: 0.8;
}

.create-btn-img{
    width: 13px;
    margin-right: 6px;
}


@media only screen and (max-width: 1000px) {
    .campaign-info-holder{
        margin: 8% 0;
    }

    .list-info-holder{
        margin: 8% 0;
        flex-direction: column;
        align-items: baseline;
    }
    .no-lists{
        margin: 18% auto;
    }
}

.search_input_container {}