@import "main.css";

.container {
    padding: 25px 100px;
}

.container > p {
    margin: 25px;
    font-weight: bold;
    font-size: 24px;
}

.grid-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px;
    justify-content: center;
    margin-top: 25px;
}

.container-header > p {
    font-size: 24px;
    font-weight: bold;
    flex: 6;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.container-header > div {
    display: flex;
    gap: 25px;
    flex: 4;
    justify-content: end;
}


.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 12px;
    box-shadow: none;
    cursor: pointer;
    width: 250px;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.25);
}

.card .card-header {
    width: 250px;
}

.card .card-content {
    display: flex;
    gap: 25px;
    flex-direction: column;
    align-items: start;
    align-self: flex-start;
}

.card .card-content .title,
.card .card-content p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.card * {
    width: 100%;
}

.card-footer {
    display: flex;
    gap: 12px;
    flex-direction: column;
    padding-left: 12px;
}

.card-footer p {
    font-size: 13px;
    font-weight: 400;
    color: #6d6d6d;
}


.dropdown {
    background-color: black;
    color: white;
    position: absolute;
    display: inline-block;
    bottom: -180px;
    border-radius: 7px;
    border-width: 2px;
    right: 0;
    z-index: 9999;
}

.dropdown a {
    padding: 12px;
    cursor: pointer;
    display: block;
}

.dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hidden {
    display: none;
}

.sort-button {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 12px;
}

.active:hover {
    transition: none;
    transform: none;
    box-shadow: none;

}

.page-link {
    align-self: center;
}