.main {

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;


}


.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.search-bar {
    width: 400px;
    height: 25px;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #0000002b;
    border-radius: 8px;
    color: #dbd8e3;
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.45);
    background-color: #2a2a2a;
    text-decoration: none;
}

.search-button {
    padding: 10px 15px;
    margin-left: 10px;
    max-width: 60px;
    max-height: 55px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.45);
    background-color: #353535;
    cursor: pointer;
}

.search-button:hover {
    background-color: rgba(220, 220, 220, 0.292);
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    justify-content: center;
    align-items: center;
}

.card {
    width: 300px;
    height: 100px;
    margin: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.45);
    background-color: #2a2a2a;
    text-decoration: none;
}

.photo {
    max-width: 100px;
    max-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    padding-left: 5px;
    border-radius: 4px;
    user-select: none;

}

.text,
.id {
    color: #dbd8e3;
    user-select: none;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;

}

.id {
    background-color: #1d1d1d;
    color: rgba(255, 255, 255, 0.695);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 5px;
    font-size: 12px;
    font-weight: bolder;
}

.buttoncontainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.buttonadd {
    background-color: #333333;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.buttonadd:hover {
    background-color: gainsboro;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.buttonadd:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    background-color: rgba(220, 220, 220, 0.578);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transition: all 5s ease;
}

.iconadd {
    padding-top: 2px;
    padding-bottom: 2px;
}

.text:hover {

    color: black;


}