@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.container {
    width: 80vw;
    padding: 20px;
}

.main-content {
    text-align: center;
}

header {
    margin-bottom: 10px;
}

.search-bar {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.search-bar input {
    width: 60%;
    padding: 8px;
    margin-right: 5px;
    border: 1px solid #add8e6;
}

.search-bar button {
    padding: 8px 15px;
    border: 1px solid #add8e6;
    background-color: #f4f4f4;
    color: #333;
}

.vertical-line {
    border-left: solid;
    border-right: none;
    border-top: none;
    border-bottom: none;
    border-width: 1px;
    border-style: dashed;
    border-color: #add8e6;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    padding: 10px 0;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter,
.apply {
    padding: 10px 15px;
    background-color: #eaeaea;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    color: #333;
}

.filter:hover,
.apply:hover {
    background-color: #dcdcdc;
}

.listings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.listing {
    padding: 15px;
    background-color: #060606;
    color: #333;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform .2s;
}

.listing:hover {
    transform: scale(1.02);
}

.listing img {
    max-width: 100%;
    border-radius: 5px;
    margin-top: 10px;
}

.hidden {
    display: none;
}

.filter-options {
    margin-top: 20px;
}

.filter-input {
    margin: 10px 0;
}

.card {
    border-style: solid;
    border-color: #add8e6;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    padding-left: 5px;
    background: linear-gradient(145deg, #020202, #020202);
    transition: transform .2s;
}

.user_id {
    font-weight: bold;
    color: #fff;
}

.note {
    font-style: italic;
    color: #555;
}

.card:hover {
    transform: scale(1.02);
}

.star {
    cursor: pointer;
    font-size: 20px;
}

.save-button, .remove-button {
    margin-bottom: 10px;
    border-style: solid;
    border-radius: 5px;
    border-color: #bbb;
    background-color: #f4f4f4;
    color: #333;
}