.card {
    display: flex;
    justify-content: flex-start;
    margin: 10px;
    padding: 10px;
    background: var(--color-green);
    border-radius: var(--border-radius);
    align-items: center;
}

.card-inner {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

/* Icons */
.icon-sm {
    width: 10px;
    height: 10px;
}

.icon {
    width: 15px;
    height: 15px;
}

.icon-lg {
    width: 20px;
    height: 20px;
    padding: 10px;
    background: var(--accent-card-color);
    border-radius: var(--border-radius-inner);
}

/* Display Picture */
.dp-cover-lg {
    width: 120px;
    height: 120px;
    background: var(--accent-card-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
}

.dp-cover-sm {
    width: 40px;
    height: 40px;
    background: var(--accent-card-background);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin-bottom: 10px;
}

.dp-img {
    width: 80%;
    height: 80%;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
}