/* ====================================
   DIALBIZ PREMIUM ITEM SIDEBAR
   ==================================== */

/* Sidebar */

#sidebar {
    font-family: inherit;
}

/* All Cards */

#sidebar > div {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 22px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,.06);
    border: 1px solid #eef2f7;
}

/* Headings */

#sidebar h2 {
    margin: 0;
    padding: 18px 22px;
    background: linear-gradient(135deg,#1e40af,#2563eb);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* ====================================
   PRICE BOX
   ==================================== */

#sidebar .price {
    background: linear-gradient(135deg,#059669,#10b981);
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16,185,129,.25);
}

/* ====================================
   CONTACT BOX
   ==================================== */

#contact {
    padding-bottom: 22px;
}

/* Profile Image */

#contact .user-img {
    text-align: center;
    margin: 25px 0 15px;
}

#contact .user-img img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #e5e7eb;
    object-fit: cover;
}

/* Contact Details */

#contact p {
    padding: 0 22px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
}

#contact span {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 3px;
}

#contact a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* Online Badge */

.is-online {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    margin-left: 5px;
}

/* Contact Button */

.show-contact-btn {
    display: block;
    margin: 20px;
    text-align: center;
    background: #2563eb;
    color: #fff !important;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    transition: .3s;
}

.show-contact-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* ====================================
   CONTACT FORM POPUP
   ==================================== */

#contact-in {
    background: #fff;
}

#contact-in form {
    padding: 20px;
}

#contact-in input,
#contact-in textarea,
#contact-in select {
    width: 100%;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    padding: 12px;
    box-sizing: border-box;
}

#contact-in textarea {
    min-height: 140px;
}

#contact-in label {
    display: block;
    margin-bottom: 6px;
    color: #334155;
    font-weight: 600;
}

#contact-in .control-group {
    margin-bottom: 16px;
}

#contact-in .btn-primary {
    background: #2563eb;
    border: 0;
    border-radius: 10px;
    padding: 14px 24px;
    color: #fff;
}

/* ====================================
   USEFUL INFO
   ==================================== */

#useful_info ul {
    list-style: none;
    margin: 0;
    padding: 18px;
}

#useful_info li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #475569;
}

#useful_info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: bold;
}

/* ====================================
   REPORT LISTING
   ==================================== */

.mark_as {
    width: 100%;
    border: 1px solid #dbe3ec;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* ====================================
   AD BOX
   ==================================== */

.ads_300 {
    text-align: center;
    padding: 15px;
}

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

@media (max-width:768px){

    #sidebar {
        margin-top: 20px;
    }

    #sidebar > div {
        margin-bottom: 15px;
        border-radius: 14px;
    }

    #sidebar h2 {
        font-size: 16px;
        padding: 15px;
    }

    #contact p {
        padding: 0 15px;
    }

    .show-contact-btn {
        margin: 15px;
    }

    #sidebar .price {
        font-size: 28px;
        padding: 18px;
    }

}