/* GLOBAL */
.dops-card,
.modern-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
    margin-bottom:25px;
	margin-top: 20px;
}

.section-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

/* DASHBOARD */
.modern-header h2{
    font-size:34px;
    margin-bottom:10px;
    font-weight:700;
}

.modern-header p{
    color:#6b7280;
    margin-bottom:25px;
}

.modern-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:25px;
}

.modern-stat-card{
    padding:25px;
    border-radius:18px;
    color:#fff;
}

.modern-stat-card span{
    display:block;
    margin-bottom:10px;
    opacity:0.9;
}

.modern-stat-card strong{
    font-size:36px;
}

.blue{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.orange{
    background:linear-gradient(135deg,#f59e0b,#ea580c);
}

.green{
    background:linear-gradient(135deg,#10b981,#047857);
}

.purple{
    background:linear-gradient(135deg,#8b5cf6,#6d28d9);
}

.modern-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
}

/* CARD */
.card-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.card-head h3{
    font-size:24px;
    margin:0;
}

/* BUTTON */
.modern-btn{
    background:#2563eb;
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    text-decoration:none;
    border:none;
    cursor:pointer;
}

.modern-btn:hover{
    background:#1d4ed8;
    color:#fff;
}

/* BLOG ROW */
.modern-blog-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.blog-left{
    display:flex;
    gap:15px;
    align-items:center;
}

.blog-left img{
    width:70px;
    height:70px;
    border-radius:12px;
    object-fit:cover;
}

.blog-left h4{
    margin:0 0 8px;
}

/* STATUS */
.blog-status{
    display:inline-block;
    padding:5px 10px;
    border-radius:8px;
    font-size:12px;
    font-weight:600;
}

.blog-status.publish{
    background:#dcfce7;
    color:#166534;
}

.blog-status.pending{
    background:#ffedd5;
    color:#c2410c;
}

/* SUMMARY */
.summary-list{
    margin:0;
    padding:0;
    list-style:none;
}

.summary-list li{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

/* BLOG SECTION */
.blog-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:20px;
    margin-bottom:18px;
}

.blog-card-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.blog-left-side{
    display:flex;
    align-items:center;
    gap:15px;
}

.blog-thumb{
    width:80px;
    height:80px;
    border-radius:12px;
    object-fit:cover;
}

.blog-title{
    margin:0 0 8px;
    font-size:18px;
    font-weight:700;
}

/* ACTIONS */
.blog-actions a{
    margin-left:12px;
    text-decoration:none;
    font-weight:600;
}

.blog-actions .view{
    color:#2563eb;
}

.blog-actions .edit{
    color:#f59e0b;
}

.blog-actions .delete{
    color:#ef4444;
}

/* FORM */
.edit-form label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.edit-form input[type=text],
.edit-form textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:12px;
    margin-bottom:20px;
}

.current-image img{
    width:180px;
    border-radius:12px;
    margin-bottom:15px;
}

.edit-buttons{
    display:flex;
    gap:15px;
    align-items:center;
    margin-top:20px;
}

.cancel-btn{
    color:#ef4444;
    text-decoration:none;
    font-weight:600;
}

/* SUCCESS */
.dops-success{
    background:#dcfce7;
    color:#166534;
    padding:14px;
    border-radius:12px;
    margin-bottom:20px;
}

/* PAGINATION */
.pagination-wrap{
    margin-top:25px;
}

.pagination-wrap .page-numbers{
    display:inline-block;
    margin-right:6px;
    padding:8px 14px;
    border-radius:8px;
    border:1px solid #ddd;
    text-decoration:none;
    color:#111827;
}

.pagination-wrap .current{
    background:#2563eb;
    color:#fff;
}

/* REVIEWS */
.review-row{
    padding:18px 0;
    border-bottom:1px solid #eee;
}

/* MOBILE */
@media(max-width:991px){

    .modern-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .modern-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .modern-stats-grid{
        grid-template-columns:1fr;
    }

    .blog-card-inner,
    .modern-blog-row{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}
/* =========================================
BLOG LIST
========================================= */

.dops-blog-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:22px;
    background:#fff;
    border:1px solid #edf0f3;
    border-radius:18px;
    margin-bottom:18px;
    transition:.25s ease;
}

.dops-blog-item:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* LEFT */

.dops-blog-left{
    display:flex;
    align-items:center;
    gap:18px;
    flex:1;
}

/* IMAGE */

.dops-thumb{
    width:72px;
    height:72px;
    border-radius:16px;
    object-fit:cover;
    background:#f3f4f6;
    flex-shrink:0;
}

.dops-no-thumb{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    color:#2563eb;
}

/* CONTENT */

.dops-blog-content{
    flex:1;
}

.dops-blog-title{
    font-size:18px;
    font-weight:700;
    margin:0 0 10px;
    color:#111827;
    line-height:1.4;
}

.dops-blog-meta{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.dops-date{
    font-size:13px;
    color:#6b7280;
}

/* BADGES */

.dops-badge{
    display:inline-flex;
    align-items:center;
    padding:5px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
}

.dops-badge.published{
    background:#ecfdf5;
    color:#047857;
}

.dops-badge.pending{
    background:#fff7ed;
    color:#c2410c;
}

/* ACTIONS */

.dops-blog-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

/* BUTTONS */

.dops-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.2s ease;
}

.dops-view{
    background:#eff6ff;
    color:#2563eb;
}

.dops-view:hover{
    background:#dbeafe;
}

.dops-edit{
    background:#fffbeb;
    color:#d97706;
}

.dops-edit:hover{
    background:#fef3c7;
}

.dops-delete{
    background:#fef2f2;
    color:#dc2626;
}

.dops-delete:hover{
    background:#fee2e2;
}

/* MOBILE */

@media(max-width:768px){

    .dops-blog-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .dops-blog-actions{
        width:100%;
    }

    .dops-btn{
        flex:1;
    }

}
/* BLOG ITEM */
.dops-blog-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #edf0f3;
}

.dops-blog-left{
    display:flex;
    align-items:center;
    gap:16px;
}

.dops-thumb{
    width:60px;
    height:60px;
    border-radius:14px;
    object-fit:cover;
}

.dops-no-thumb{
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:22px;
}

.dops-blog-title{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#111827;
}

.dops-blog-meta{
    margin-top:6px;
    display:flex;
    align-items:center;
    gap:10px;
}

.dops-badge{
    padding:4px 10px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.dops-badge.publish{
    background:#dcfce7;
    color:#166534;
}

.dops-badge.pending{
    background:#fff7ed;
    color:#c2410c;
}

.dops-date{
    font-size:13px;
    color:#6b7280;
}

.dops-blog-actions{
    display:flex;
    gap:10px;
}

.dops-btn{
    padding:9px 14px;
    border-radius:10px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:0.2s;
}

.dops-view{
    background:#eff6ff;
    color:#2563eb;
}

.dops-edit{
    background:#fef3c7;
    color:#92400e;
}

.dops-delete{
    background:#fee2e2;
    color:#991b1b;
}

.dops-btn:hover{
    transform:translateY(-1px);
}
/* PAGINATION */
.pagination-wrap{
    margin-top:30px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.pagination-wrap a{
    min-width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#fff;
    border:1px solid #e5e7eb;
    text-decoration:none;
    color:#111827;
    font-weight:600;
    transition:0.2s;
}

.pagination-wrap a:hover{
    background:#f3f4f6;
}

.pagination-wrap a.active{
    background:#2563eb;
    color:#fff;
    border-color:#2563eb;
}
/* MODAL */
.dops-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
}

.dops-modal.active{
    display:block;
}

.dops-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.dops-modal-box{
    position:relative;
    width:700px;
    max-width:95%;
    margin:50px auto;
    background:#fff;
    border-radius:16px;
    padding:30px;
    z-index:2;
    max-height:90vh;
    overflow:auto;
}

.dops-close-modal{
	position:absolute;
    top:14px;
    right:14px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#f3f4f6;
    color:#111827;
    font-size:22px;
    font-weight:600;
    line-height:1;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .25s ease;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    z-index:10;
}

.dops-modal-box input[type="text"],
.dops-modal-box textarea{
    width:100%;
    margin-bottom:15px;
}

#modal_blog_image{
    width:120px;
    border-radius:10px;
    margin-bottom:15px;
}
/**custom code**/

/*========================================
RESOURCE HEADER
========================================*/

.dops-resource-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.dops-section-label{
    color:#1e40af;
    font-weight:700;
    font-size:15px;
    display:block;
    margin-bottom:10px;
}

.dops-resource-heading{
    font-size:40px;
    line-height:1.2;
    font-weight:800;
    color:#111827;
    margin-bottom:12px;
}

.dops-resource-subtitle{
    color:#6b7280;
    font-size:15px;
    max-width:700px;
}

/*========================================
ADD BUTTON
========================================*/

.dops-add-resource-btn{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:16px 28px;
    border-radius:14px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(37,99,235,0.2);
}

.dops-add-resource-btn:hover{
    transform:translateY(-2px);
    background:#1d4ed8;
}

/*========================================
CREATE FORM
========================================*/

.dops-create-form{
    display:none;
    margin-bottom:35px;
}

/*========================================
RESOURCE GRID
========================================*/
.blog-list{
    display:grid !important;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
    margin-top:20px;
    align-items:start;
}

/*========================================
RESOURCE CARD
========================================*/

.dops-resource-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.dops-resource-card:hover{
    transform:translateY(-6px);
}

/*========================================
THUMB
========================================*/

.dops-resource-thumb-wrap{
    position:relative;
    height:160px;
    overflow:hidden;
}

.dops-resource-thumb{
    width:100%;
    height:100%;
    object-fit:cover;
}

.dops-resource-no-thumb{
    width:100%;
    height:100%;
    background:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:50px;
    font-weight:800;
}

/*========================================
BADGE
========================================*/

.dops-resource-badge{
    position:absolute;
    top:18px;
    left:18px;
    padding:7px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.dops-resource-badge.publish{
    background:#dcfce7;
    color:#166534;
}

.dops-resource-badge.pending{
    background:#fff7ed;
    color:#c2410c;
}

/*========================================
CONTENT
========================================*/

.dops-resource-title{
    font-size:24px;
    line-height:1.3;
    font-weight:800;
    margin-bottom:14px;
    color:#111827;
}

.dops-resource-title{
    font-size:24px;
    line-height:1.3;
    font-weight:800;
    margin-bottom:14px;
    color:#111827;
}

.dops-resource-footer{
    border-top:1px solid #f3f4f6;
    padding:20px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.dops-resource-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:#9ca3af;
}
.dops-resource-content {
  padding: 20px;
}
/*========================================
FOOTER
========================================*/

.dops-resource-footer{
    border-top:1px solid #f3f4f6;
    padding:14px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.dops-resource-view{
    color:#2563eb;
    text-decoration:none;
    font-weight:700;
}

.dops-resource-actions{
    display:flex;
    gap:18px;
}

.dops-resource-actions a{
    font-size:18px;
    text-decoration:none;
    transition:0.3s;
}

.dops-resource-edit{
    color:#2563eb;
}

.dops-resource-delete{
    color:#ef4444;
}

.dops-resource-actions a:hover{
    transform:scale(1.15);
}

/*========================================
MOBILE
========================================*/

@media(max-width:768px){

    .dops-resource-heading{
        font-size:30px;
    }

    .blog-list{
        grid-template-columns:1fr;
    }

}
.dops-resource-badge.publish{
    background:#dcfce7;
    color:#166534;
}

.dops-resource-badge.pending{
    background:#fff7ed;
    color:#c2410c;
}
/*========================================
 cutom review design 20-may-26
========================================*/
/* MAIN WRAPPER */
.custom-review-wrap{
    width:100%;
}

/* CARD */
.review-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    margin-bottom:30px;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
}

.review-small-title{
    color:#2952CC;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.review-title{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin:0 0 10px;
}

.review-subtitle{
    color:#6B7280;
    font-size:18px;
    margin-bottom:30px;
}

/* TABLE */
.review-table{
    width:100%;
    border:1px solid #E5E7EB;
    border-radius:18px;
    overflow:hidden;
}

.review-table table{
    width:100%;
    border-collapse:collapse;
}

.review-table th{
    background:#F8FAFC;
    text-align:left;
    padding:22px;
    font-size:15px;
    color:#667085;
    font-weight:600;
}

.review-table td{
    padding:22px;
    border-top:1px solid #eee;
    vertical-align:middle;
}

.user-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.avatar-circle{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#EEF2FF;
    color:#4F46E5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    flex-shrink:0;
}

.review-name{
    font-weight:700;
    font-size:18px;
}

.review-rating{
    font-size:18px;
    font-weight:700;
}

.stars{
    color:#FBBF24;
    letter-spacing:2px;
    margin-left:8px;
}

.review-text{
    color:#4B5563;
    line-height:1.7;
}

/* PAGINATION */
.review-pagination{
    margin-top:25px;
    display:flex;
    gap:10px;
}

.review-pagination a,
.review-pagination span{
    width:42px;
    height:42px;
    border-radius:10px;
    border:1px solid #E5E7EB;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#111827;
    font-weight:600;
}

.review-pagination .current{
    background:#2952CC;
    color:#fff;
    border-color:#2952CC;
}

/* SUMMARY CARD */
.summary-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
}

.summary-title{
    font-size:34px;
    font-weight:800;
    margin-bottom:30px;
}

.rating-big{
    font-size:72px;
    font-weight:800;
    line-height:1;
}

.rating-big span{
    font-size:34px;
    color:#6B7280;
}

.summary-stars{
    color:#FBBF24;
    font-size:28px;
    margin:15px 0;
}

.summary-total{
    color:#6B7280;
    margin-bottom:25px;
}

.rating-row{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
}

.rating-label{
    width:70px;
}

.progress{
    flex:1;
    height:10px;
    background:#E5E7EB;
    border-radius:999px;
    overflow:hidden;
}

.progress-fill{
    background:#2952CC;
    height:100%;
    border-radius:999px;
}

.rating-percent{
    width:60px;
    text-align:right;
    font-weight:600;
}

/* MOBILE */
@media(max-width:768px){

    .review-card,
    .summary-card{
        padding:20px;
    }

    .review-title{
        font-size:30px;
    }

    .review-table{
        overflow-x:auto;
    }
}
.reviews-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.reviews-pagination a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: #fff;
    color: #667085;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: .3s;
}

.reviews-pagination a:hover {
    border-color: #2F56D9;
    color: #2F56D9;
}

.reviews-pagination .active {
    background: #2F56D9;
    color: #fff;
    border-color: #2F56D9;
}

.page-arrow {
    font-size: 18px;
}
/* end review code */
/* =========================================================
DASHBOARD V2 FINAL UI
========================================================= */

/* MAIN WRAPPER */

.dops-dashboard-v2{
    width:100%;
}

/* =========================================================
HERO
========================================================= */

.dops-hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    margin-bottom:28px;
    padding:32px;
    border-radius:28px;
    background:linear-gradient(135deg,#1d4ed8,#2563eb);
    color:#fff;
}

.dops-welcome{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
    opacity:0.9;
}

.dops-hero h2{
    margin:0 0 10px;
    font-size:36px;
    font-weight:800;
    line-height:1.2;
    color:#fff;
}

.dops-hero p{
    margin:0;
    font-size:15px;
    line-height:1.7;
    opacity:0.92;
}

.dops-add-resource-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:52px;
    padding:0 26px;
    border-radius:16px;
    background:#fff;
    color:#2563eb !important;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:0.25s;
    white-space:nowrap;
}

.dops-add-resource-btn:hover{
    transform:translateY(-2px);
}

/* =========================================================
TOP STATS
========================================================= */

.dops-dashboard-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
    margin-bottom:28px;
}

.dops-dashboard-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    border:1px solid #eef2f7;
    box-shadow:0 4px 20px rgba(15,23,42,0.04);
}

.dops-dashboard-card span{
    display:block;
    margin-bottom:12px;
    font-size:14px;
    font-weight:600;
    color:#6b7280;
}

.dops-dashboard-card strong{
    font-size:38px;
    line-height:1;
    font-weight:800;
    color:#111827;
}

.dops-dashboard-card.orange{
    border-left:5px solid #ea580c;
}

.dops-dashboard-card.green{
    border-left:5px solid #16a34a;
}

.dops-dashboard-card.purple{
    border-left:5px solid #7c3aed;
}

/* =========================================================
MAIN GRID
========================================================= */

.dops-main-dashboard{
    display:grid;
    grid-template-columns:minmax(0,1.7fr) 340px;
    gap:24px;
    align-items:start;
}

.dops-left-dashboard,
.dops-right-dashboard{
    min-width:0;
}

.dops-right-dashboard{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* =========================================================
WHITE CARD
========================================================= */

.dops-white-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    border:1px solid #eef2f7;
    box-shadow:0 4px 20px rgba(15,23,42,0.04);
}

/* =========================================================
CARD HEADER
========================================================= */

.dops-card-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:22px;
}

.dops-card-head h3{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#111827;
}

.dops-card-head a{
    color:#2563eb;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
}

/* =========================================================
RESOURCE ROW
========================================================= */

.dops-resource-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:18px 0;
    border-bottom:1px solid #eef2f7;
}

.dops-resource-row:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.dops-resource-left{
    display:flex;
    align-items:center;
    gap:16px;
    flex:1;
    min-width:0;
}

.dops-resource-left img{
    width:72px;
    height:72px;
    border-radius:18px;
    object-fit:cover;
    flex-shrink:0;
}

.dops-resource-left h4{
    margin:0 0 10px;
    font-size:16px;
    font-weight:700;
    line-height:1.5;
    color:#111827;
}

/* =========================================================
STATUS BADGE
========================================================= */

.dops-mini-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    line-height:1;
}

.dops-mini-status.publish{
    background:#dcfce7;
    color:#166534;
}

.dops-mini-status.pending{
    background:#ffedd5;
    color:#c2410c;
}

/* =========================================================
VIEW BUTTON
========================================================= */

.dops-view-link{
    min-width:88px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#f3f4f6;
    border-radius:12px;
    text-decoration:none;
    color:#111827;
    font-weight:700;
    font-size:14px;
    transition:0.25s;
}

.dops-view-link:hover{
    background:#2563eb;
    color:#fff;
}

/* =========================================================
PROFILE STRENGTH
========================================================= */

.dops-white-card h3{
    margin:0 0 18px;
    font-size:22px;
    font-weight:700;
    color:#111827;
}

.dops-progress-wrap{
    margin-top:14px;
}

.dops-progress-bar{
    width:100%;
    height:12px;
    background:#e5e7eb;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:14px;
}

.dops-progress-bar span{
    display:block;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg,#2563eb,#3b82f6);
}

/* =========================================================
REVIEW SCORE
========================================================= */

.dops-review-score{
    display:flex;
    align-items:center;
    gap:18px;
}

.dops-score-circle{
    width:82px;
    height:82px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.dops-score-circle strong{
    font-size:30px;
    line-height:1;
}

.dops-score-circle span{
    font-size:13px;
}

/* =========================================================
SUMMARY
========================================================= */

.dops-summary-list{
    list-style:none;
    padding:0;
    margin:0;
}

.dops-summary-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #f3f4f6;
    font-size:14px;
    color:#374151;
}

.dops-summary-list li:last-child{
    border-bottom:none;
}

/* =========================================================
ACTIVITY
========================================================= */

.dops-activity-list{
    margin-top:10px;
}

.dops-activity-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid #f3f4f6;
    font-size:14px;
    line-height:1.6;
}

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

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    flex-shrink:0;
}

.dot.green{
    background:#16a34a;
}

.dot.orange{
    background:#ea580c;
}

.dot.blue{
    background:#2563eb;
}
.dops-dashboard-v2 {
  margin-top: 25px;
}
/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .dops-main-dashboard{
        grid-template-columns:1fr;
    }

}

@media(max-width:992px){

    .dops-dashboard-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:768px){

    .dops-hero{
        flex-direction:column;
        align-items:flex-start;
    }

    .dops-dashboard-grid{
        grid-template-columns:1fr;
    }

    .dops-resource-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .dops-view-link{
        width:100%;
    }

}
/* =========================================================
EDIT PROFILE LAYOUT 22_may_26
========================================================= */

.dops-profile-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:24px;
    align-items:start;
}

.dops-profile-main,
.dops-profile-sidebar{
    min-width:0;
}

/* =========================================================
PROFILE SIDEBAR
========================================================= */

.dops-company-card{
    position:sticky;
    top:20px;
    text-align:center;
}

.dops-company-logo{
    width:120px;
    height:120px;
    margin:0 auto 20px;
    border-radius:24px;
    overflow:hidden;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
}

.dops-company-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.dops-company-card h4{
    margin:0 0 10px;
    font-size:22px;
    font-weight:700;
    color:#111827;
}

.dops-company-url{
    margin:0 0 20px;
    font-size:14px;
    color:#6b7280;
    word-break:break-word;
}

.dops-company-meta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:#dcfce7;
    color:#166534;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.dops-company-joined{
    padding-top:20px;
    border-top:1px solid #eef2f7;
    font-size:14px;
    color:#6b7280;
}

.dops-company-joined strong{
    display:block;
    margin-top:6px;
    color:#111827;
    font-size:16px;
}

/* =========================================================
UM FORM STYLING
========================================================= */

.dops-profile-form .um{
    max-width:100% !important;
}

.dops-profile-form .um-form{
    margin:0 !important;
}

.dops-profile-form .um-field-label{
    margin-bottom:10px !important;
}

.dops-profile-form .um-field-label label{
    font-size:14px !important;
    font-weight:700 !important;
    color:#111827 !important;
}

.dops-profile-form .um-form input[type=text],
.dops-profile-form .um-form input[type=email],
.dops-profile-form .um-form input[type=tel],
.dops-profile-form .um-form input[type=url],
.dops-profile-form .um-form input[type=password],
.dops-profile-form .um-form textarea,
.dops-profile-form .um-form select{
    width:100% !important;
    height:52px !important;
    border-radius:14px !important;
    border:1px solid #dbe2ea !important;
    background:#fff !important;
    padding:0 16px !important;
    font-size:14px !important;
    box-shadow:none !important;
}

.dops-profile-form .um-form textarea{
    min-height:140px !important;
    padding-top:16px !important;
}

.dops-profile-form .um-field{
    margin-bottom:24px !important;
}

.dops-profile-form .um-button{

    min-height:54px !important;
    height:auto !important;

    padding:14px 28px !important;

    border:none !important;
    border-radius:14px !important;

    background:linear-gradient(
        135deg,
        #f59e0b,
        #ea580c
    ) !important;

    color:#fff !important;

    font-size:15px !important;
    font-weight:700 !important;

    line-height:1.2 !important;

    display:inline-flex !important;
    align-items:center;
    justify-content:center;

    white-space:nowrap !important;

    transition:0.25s ease;

    box-shadow:
        0 10px 25px rgba(234,88,12,0.18);

}
.dops-profile-form input.um-button{
    width:auto !important;
}
.dops-profile-form .um-button:hover{
    transform:translateY(-2px);
    opacity:0.95;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .dops-profile-layout{
        grid-template-columns:1fr;
    }

    .dops-company-card{
        position:relative;
        top:auto;
    }

}
/* =========================================================
UM BUTTONS
========================================================= */

.dops-profile-form .um-col-alt{

    display:flex !important;
    align-items:center;
    gap:14px;
    margin-top:30px !important;
    flex-wrap:wrap;

}

.dops-profile-form .um-left{

    margin:0 !important;

}
.dops-profile-form .um-button:hover{

    transform:translateY(-2px);
    opacity:0.96;

}

/* CANCEL BUTTON */

.dops-profile-form .um-alt{

    height:52px !important;
    padding:0 24px !important;
    border-radius:14px !important;

    background:#f3f4f6 !important;
    border:1px solid #e5e7eb !important;

    color:#374151 !important;
    font-size:15px !important;
    font-weight:600 !important;

    display:inline-flex !important;
    align-items:center;
    justify-content:center;

    text-decoration:none !important;

    transition:0.25s ease;

}

.dops-profile-form .um-alt:hover{

    background:#e5e7eb !important;
    color:#111827 !important;

}
