

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
    /*margin-left: 260px;*/
    justify-content: space-between;
    padding: 20px;
}

.card {
    background-color: #1b1920;
    padding: 20px;
    border-radius: var(--border-radius);
    width: fit-content;
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    transition: width 0.3s;
    height: fit-content;
    
}
.card .content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card article {
    width: fit-content;
}

.card .footer {
    color: #64666a;
}
.card h3 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.card span {
    font-size: 14px;
}

.card button, .item button{
    padding: 0;
    color: #64666a;
    background-color: white;
    background: none;
    position: relative;
    transition: width 0.3s;
    opacity: 0;
}

.card button {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(50%) translateY(-25%);
}





.item:hover button {
    color: #747474;
    transform: scale(105%);
    opacity: 1;
}

.card button svg, .item button svg {
    z-index: 10;
}

.card button .background, .item button .background, .context-menu .check .background {
    position: absolute;
    top: 5px;
    right: 5px;
    left: 5px;
    bottom: 5px;
    background-color: white;
    border-radius: 360px;
}

.context-menu .check .background {
    top: 10px;
    right: 10px;
    left: 10px;
    bottom: 10px;
}

.search {
    display: flex;
    border-radius: 0.6rem;
    background-color: #1b1920;
    color: white;
    align-items: center;
    padding: 0.6rem;
    width: 50%;
}

.search input {
    background: none;
    outline: none;
    padding-left: 1rem;
    border: none;
    color: inherit;
    font-family: 'Lato';
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.search input::placeholder , .search svg{
    color: #64666a;
}



#empty {
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    
}

#empty:only-child {
    display: flex;
    opacity: 1;
}

#empty svg {
    width: 42%;
}

#empty h3 {
    margin: 10px;
    font-size: 20px;
}

#empty p {
    margin: 0;
    font-size: 16px;
}

.row {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    border-radius: var(--border-radius);
    border: 2px solid #1b1920;
    padding: 5px;
    box-sizing: border-box;
}

.row .name {
    width: 50%;
}

.row .last-modified {
    width: 15%;
}