.smmexp-profile-shortcode{
    display: flex;
    flex-direction: column;
}

/* Perfil */
.smmexp-profile{
    display: flex;
    
    flex-direction: column;
    row-gap: 0.5rem;
    column-gap: 3rem;
    margin-bottom: 15px;
}

.smmexp-profile-header{
    display: flex;
    justify-content: center;
    flex-direction: row;
    row-gap: 0rem;
    column-gap: 0.8rem;
}
.smmexp-profile-image-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 0.1rem;
}
.smmexp-profile-data-box{
    padding-top: 4px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    row-gap: 0.1rem;
}
.smmexp-profile-followers-box{  
    display: flex;
    flex-direction: column;
    
    & *{
        padding: 0;
    }
}
.smmexp-private-warning{
    margin-bottom: 10px;
}
.smmexp-private-warning *{
    margin: 0;
}

/* Grid instagram*/
.smmexp-thumb{
    position: relative;          
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    aspect-ratio: 1 / 1 ;
}
.smmexp-grid-img{
    height: 100% !important;    
    display: flex;
    align-items: center;
    justify-content: center;
}
.smmexp-toggle{
    padding: 0.3rem 0.8rem;
    font-size: 14px;
}

/* overlay padrão (invisível) */
.smmexp-grid-overlay{
    position:absolute;
    inset:0;
    background:rgba(255, 255, 255, 0.5);
    color:#00ffb3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    opacity:0;
    transition:.15s;
    pointer-events:none;
    height: 100%;
}

/* quando selecionado */
.smmexp-grid-overlay.on{
    opacity:1;
}

.smmexp-profile-grid{
    display: flex;
    flex-direction: column ;
    justify-content: center;
    align-items: center;
    row-gap: 6px;
}
.smmexp-profile-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
    gap: 0.1rem; /* espaçamento entre os itens */
    overflow: scroll;
    overflow-x: hidden;
    height: 250px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) inset;
    border-radius: 16px;
    background-color: #fafafa;
}
div.smmexp-sorted-like-tabs{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    column-gap: 0.5rem;
    margin-bottom: 8px;
}
span.smmexp-sorted-like-tab{
    background-color: #f7e9d731;
    color: #5b2d01;
    padding: 4px 8px; 
    border-radius: 16px; 
    font-size: 10px; 
    width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.smmexp-sorted-like-tab.on{
    background-color: #F9DCC0; 
    color: #5b2d01; 
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .smmexp-profile-shortcode{
        display: flex;
        flex-direction: column;
    }

    /* Perfil */
    .smmexp-profile{
        flex-direction: row;
    }
    .smmexp-profile-header{
        flex-direction: column;
        align-items: center;
    }
    .smmexp-profile-followers-box{
        flex-direction: row;
        column-gap: 0.1rem;
    }

    /* Grid instagram*/
    .smmexp-grid-img {
        height: 100% !important;
        object-fit: fill;
    }
}


