﻿.list-container {
    max-height: 320px !important;
}


.cards-container{
    width:100%;
    padding-inline:10px;
    max-height:360px !important;
}

.card {
    width: 280px;
    background-color: rgb(var(--bg-card)) !important;
    transition: all 0.2s ease;
    padding: 5px;
    position: relative; /* Container for the absolute avatar */
    overflow: visible;
    border-radius: 20px !important;
}
    .card:hover {
        background-color: var(--bg-secondary) !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* Optional: adds depth */
        border-radius: 10px !important;
    }
        
.avatar-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.avatar {
    display: flex;
    justify-content: center;
}

.av-container {
    width: 120px;
    height: 120px;
    transition: 0.2s ease-in;
    margin: 0 auto; /* Center it */
}

.avatar-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.details-section {
    min-height: 140px;
    display:flex;
    flex-direction:column;
}

.details-container {

}
.left {
    display: flex;
    flex-direction: row;
    justify-content: left;
}
    .details-container p, h1, h2, h3, h4, h5, h6 {
        padding: 0;
        margin: 0;
    }

    .details-container span{
        
    }
    .detail-text {
        display: flex;
        flex-direction: row;
        align-items: center;
        direction: ltr;
    }