
.clickable-card {
    padding: .6rem;
    color: black;
    background: white;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 5px solid #007bff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    &:hover

{
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

&.titles {
    display: block;
    justify-content: space-between;
}

& .main-title {
    font-size: 1.2rem;
    font-weight: bold;
}

& .muted-title {
    font-size: 0.9rem;
    color: #6c757d;
}

& div {
    font-size: 1.2rem;
    margin-top: auto;
    margin-bottom: auto;
}
}
