.content-card {
    display: flex;
    flex-direction: column;
    height: 260px;
    width: 180px;
    border: none;
    border-radius: 8px;
    box-shadow: 5px 5px 3px #BAC0CB;
    background-color: #EFF1F6;
    align-items: center;
}

.card-image-container {
    margin-top: 20px;
    width: 90px;
    height: 90px;
}

.card-image {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.card-title {
    font-family: "NotoSans-Bold";
    font-size: 12px;
    color: #022C92;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

.card-button {
    width: 90%;
    height: 29px;
    margin: 10px;
    border: none;
    border-radius: 8px;
    background-color: #022C92;
    color: #FCFCFC;
    transition:
        background-color 0.6s; 
}

.card-button:hover {
    cursor: pointer;
    background-color: #5D9CE7;
}

.card-info-container {
    display: flex;
    flex: 1;
    padding: 5px;
    align-items: center;
}

.card-info-image-container {
    width: 24px;
    height: 24px;
}

.card-info-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-info-name {
    font-family: "NotoSans-Medium";
    font-size: 10px;
    color: #022C92;
    padding-left: 2px;
    padding-right: 10px;
}

.card-info-button {
    height: 16px;
    width: 16px;
    border: none;
    border-radius: 100%;
    background-color: #022C92;
    color: #FCFCFC;
    margin-left: 30px;
    transition:
        background-color 0.6s;
}

.card-info-button:hover {
    cursor: pointer;
    background-color: #5D9CE7;
}
