﻿.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /*justify-content: space-between;*/
}

 .card {
    background: linear-gradient(217deg, #fff9f9 0%, #ffffff 100%);
    padding: 15px;
    width: calc(33.33% - 25px);
    height: 90px;
        }

.discoverBtn {
    margin-right: 30px;
    gap:10px;
    align-items:center;
}

.card-content {
    color: black;
    font-size: 16px;
    font-weight: 400;
}

.head-wrapper {
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 10px;
    justify-content: end;
}

.subhead-wrapper {
    display: flex;
    justify-content: space-between;
}

.radio-list {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    padding: 12px 16px;
    border-radius: 5px;
}

.AssistantTitle {
    position: relative;
    display: inline-block;
}


.radio-list.show {
    display: block;
}
/*
.BtnFilterBtn {
    margin-right: 35px;
}*/

.logOutDiscover {   
    margin-left:0px;
}
/*.dropdown-menu-details{
    top:0px !important;
}
*/
.radio-list input[type="radio"] {
    display: none;
}

.radio-list label {
    cursor: pointer;
}

.AssistantTitlesInDropdown {
    position: absolute;
    z-index: 1;
    background-color: #f9f9f9;
    min-width: 196px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    border-radius: 5px;
    /*left:-50px;*/
}

@media only screen and (max-width: 992px) {
    .card {
        width: calc(50% - 25px); 
    }
}

@media only screen and (max-width: 768px) {
    .card {
        width: calc(100% - 25px);  
    }
}


.filter-btn {
    background-color: lightslategrey;
    color: white;
    padding: 6px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Responsive styles */

@media only screen and (max-width: 768px) {
    .head-wrapper {
        flex-direction: column; 
        align-items: flex-start;
    }

    .BtnFilterBtn {
        margin-left: 0;
    }

    .BtnNewChatAMA,
    .filter-btn {
        /*width: 100%;*/
    }
}
@media (max-width : 1277px){
    .BtnFilterBtn {
        /*margin-left: 20px;*/
    }
}

@media (max-width:1100px) {
    .card-container, .card, .card-content{
        width:100%
    }

}