.btn-grad {
    background-image: linear-gradient(to right, #611F66 0%, #160917 51%, #611F66 100%)
}

.btn-grad {
    margin: 5px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}


.dashboard-bg{
    background: #f4f6fb;
    min-height: 100vh;
    padding-bottom: 40px;
}

/* Page Header */
.dashboard-header{
    background: linear-gradient(135deg, #611F66 0%, #160917 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.dashboard-header h2{
    font-weight: 700;
    margin-bottom: 5px;
}

.dashboard-header p{
    margin-bottom: 0;
    opacity: 0.8;
}

/* Cards */
.dashboard-card{
    border: none;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.dashboard-card:hover{
    transform: translateY(-5px);
}

.dashboard-card .card-body{
    padding: 28px;
}

.card-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

/* Card Colors */
.users-bg{
    background: linear-gradient(135deg, #611F66, #9C27B0);
}

.free-bg{
    background: linear-gradient(135deg, #1c1c1c, #444);
}

/* Text */
.card-title-custom{
    font-size: 14px;
    color: #777;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.card-value{
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.card-subtitle{
    color: #999;
    font-size: 13px;
}

/* Quick Stats */
.stats-box{
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.stats-title{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quick-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f1f1f1;
}

.quick-item:last-child{
    border-bottom: none;
}

.quick-item span{
    color: #666;
}

.quick-item strong{
    color: #111;
}

/* Links */
.dashboard-link{
    text-decoration: none !important;
}

.dashboard-link:hover{
    text-decoration: none !important;
}

/* Breadcrumb */
.custom-breadcrumb{
    background: transparent;
    padding: 0;
    margin: 0;
}

.custom-breadcrumb .breadcrumb-item a{
    color: #611F66;
    font-weight: 600;
}

.custom-breadcrumb .breadcrumb-item.active{
    color: #999;
}

.custom-gradient-btn{
    background-image: linear-gradient(
        to right,
        #611F66 0%,
        #160917 51%,
        #611F66 100%
    );

    background-size: 200% auto;
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(97, 31, 102, 0.35);
    transition: 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-gradient-btn:hover{
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(97, 31, 102, 0.45);
    color: #fff !important;
}

.custom-gradient-btn i{
    font-size: 14px;
}
