/*
* BBH Dashboard Css
*/
.bbh-lite-wrap {
    width: 99%;
    margin: 10px 20px 0 2px;
    overflow: hidden;
}
.bbh-lite-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    margin: 0 1px;
    color: #fff;
    padding: 20px;
}
.bbh-lite-header h1 {
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    line-height: 3rem;
}
.bbh-lite-header span {
    font-size: 25px;
}
.bbh-lite-header p {
    font-size: 1rem;
}
.bbh-lite-header.card, .bbh-col-8 .card {
    max-width: 100%;
}
/* Quick Settings CSS*/
p.bbh-quicksettings {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    padding: 10px;
}
p.bbh-quicksettings a:hover {
    background: #3858e9 !important;
    color: #fff !important;
    transition: 1s;
}
p.bbh-quicksettings a.button.button-primary {
    border: 1px solid transparent;
}
p.bbh-quicksettings a.button.button-primary:hover{
    background: transparent !important;
    color: #3858e9 !important;
    transition: 1s;
    border: 1px solid #3858e9 !important;

}

/*Common Admin Layout Css*/
.bbh-row {
    margin: 0 auto;
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: stretch;
}
.bbh-row h2 {
    font-size: 1.5rem;
    padding: 5px;
    line-height: 2rem;
    margin: 0.5rem 0 !important;
}
.bbh-row .card{
    margin-top: 10px !important;
}
.bbh-col-8 {
    flex: 3;
    margin: 0 auto;
}
.bbh-col-4 {
    flex: 1;
    margin: 0 auto;
}

.bbh-htowhead {
    background: #f8f8f8;
    padding: 5px;
    border-radius: 8px;
}

/*Features List Css*/
.bbh-features-list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}
.bbh-features-list li {
    list-style: none;
    background: #fff;
    border: 1px solid #dcdcde;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}
.bbh-features-list li:hover {
    background: #dbd8d8;
    transition: 2s;
}

.bbhlite-card-img{
    display:flex;
    gap:10px;
    align-items:flex-start;
}
h3.margintopzero{
    margin:0;
    font-size: 1rem;
}
.flexone{
    flex:1;
    max-width: 165px;
}
.flexone p{
    margin-top: 0 !important;
}
.bbh-plugins-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.bbh-plugins-grid .card {
    padding: 16px !important;
}

/*Author info*/
.bbh-logo-img {
    background-image: url('/wp-content/themes/bbh-lite/assets/img/bbh-lite-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 80px;
    border-radius: 5px;
}

/*Guide Page CSS*/
.guidepage .card li{
    font-size: 1rem;
    line-height: 2rem;
}

/*Responsive CSS*/
@media screen and (max-width: 782px) {
    .bbh-lite-header.bbh-row {
        width: 90%;
    }
    .bbh-row {
        flex-direction: column;
    }
    .bbh-col-8, .bbh-col-4 {
        flex: none;
    }

    .bbh-features-list{
        flex-direction: column
    }

    .bbh-plugins-grid .card {
        width: 100%;
    }
    .flexone{
        max-width: 100%;
    }
}