.bmp-v2-wrap{
    display:flex;
    gap:25px;
    max-width:1400px;
    margin:auto;
    padding:30px 20px;
}

.bmp-v2-sidebar{
    width:300px;
    background:#111;
    border-radius:20px;
    padding:25px;
    color:#fff;
    min-height:700px;
}

.bmp-v2-profile{
    text-align:center;
    margin-bottom:30px;
}

.bmp-v2-avatar{
    width:100px;
    height:100px;
    background:#e50914;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    font-weight:bold;
    margin:auto;
    margin-bottom:15px;
    color:#fff;
}

.bmp-v2-profile h3{
    margin:0;
    font-size:24px;
}

.bmp-v2-profile p{
    color:#bbb;
    margin-top:8px;
    word-break:break-word;
}

.bmp-v2-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.bmp-v2-menu li{
    padding:16px 18px;
    border-radius:14px;
    margin-bottom:12px;
    background:#1f1f1f;
    cursor:pointer;
    transition:0.3s;
    font-size:16px;
    font-weight:600;
}

.bmp-v2-menu li:hover{
    background:#e50914;
}

.bmp-v2-menu li.active{
    background:#e50914;
}

.bmp-v2-menu li a{
    color:#fff;
    text-decoration:none;
    display:block;
}

.bmp-v2-content{
    flex:1;
    background:#111;
    border-radius:20px;
    padding:30px;
    color:#fff;
}

.bmp-v2-tab{
    display:none;
}

.bmp-v2-tab.active{
    display:block;
}

.bmp-v2-cards{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.bmp-v2-card{
    background:#1f1f1f;
    border-radius:18px;
    padding:25px;
    box-shadow:
    0 2px 15px rgba(0,0,0,0.4);
}

.bmp-v2-card h4{
    color:#bbb;
    margin-bottom:10px;
    font-size:15px;
}

.bmp-v2-card h2{
    margin:0;
    font-size:32px;
    color:#fff;
}

.bmp-v2-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.bmp-v2-table th,
.bmp-v2-table td{
    padding:16px;
    border-bottom:1px solid #333;
    text-align:left;
}

.bmp-v2-table th{
    background:#1f1f1f;
}

.bmp-v2-table input{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:1px solid #333;
    background:#1f1f1f;
    color:#fff;
    margin-bottom:15px;
    font-size:15px;
}

.bmp-v2-table button{
    background:#e50914;
    color:#fff;
    border:none;
    padding:14px 22px;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
    font-weight:bold;
    transition:0.3s;
}

.bmp-v2-table button:hover{
    opacity:0.9;
}

.bmp-login-required{
    text-align:center;
    padding:80px 20px;
}

.bmp-login-required h2{
    margin-bottom:20px;
}

@media(max-width:900px){

    .bmp-v2-wrap{
        flex-direction:column;
    }

    .bmp-v2-sidebar{
        width:100%;
        min-height:auto;
    }

    .bmp-v2-content{
        width:100%;
    }
}

@media(max-width:600px){

    .bmp-v2-cards{
        grid-template-columns:1fr;
    }

    .bmp-v2-card h2{
        font-size:24px;
    }

    .bmp-v2-table{
        display:block;
        overflow:auto;
    }
}



/*
|--------------------------------------------------------------------------
| ACCOUNT DETAILS
|--------------------------------------------------------------------------
*/

.bmp-account-details{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.bmp-account-row{
    background:#111;
    padding:20px;
    border-radius:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
}

.bmp-account-row strong{
    font-size:16px;
}

.bmp-account-row span{
    color:#bbb;
}