/* MBConfig Software Page Styles */
.mbconfig-software-right-item {
    margin-bottom: 35px;
    background: #fcfdfe;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f4f8;
    transition: 0.3s;
}
.mbconfig-software-right-item:hover {
    box-shadow: 0 5px 20px rgba(1, 85, 162, 0.05);
    border-color: #e1e8ef;
}
.mbconfig-software-right-heading {
    font-size: 24px;
    color: #0155A2;
    margin-bottom: 20px;
    display: block;
}
.download-entry {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
}
.download-icon-circle {
    width: 50px;
    height: 50px;
    border: 1.5px solid #0155A2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0155A2;
    font-size: 20px;
    flex-shrink: 0;
    background: #fff;
    transition: 0.3s;
}
.download-entry:hover .download-icon-circle {
    background: #0155A2;
    color: #fff;
}
.download-text {
    display: flex;
    flex-direction: column;
}
.download-title {
    font-size: 18px;
    color: #0155A2;
    font-weight: 500;
    line-height: 1.2;
}
.download-size {
    font-size: 14px;
    color: #555;
    margin-top: 2px;
}
.mbconfig-software-left {
    padding-right: 30px;
}

/* Left Panel Styling */
.mbconfig-software-left h1, 
.mbconfig-software-left h2, 
.mbconfig-software-left h3, 
.mbconfig-software-left h4 {
    margin-bottom: 10px !important;
    color: #1F1F1F;
}
.mbconfig-software-left p {
    margin-bottom: 25px !important;
}
.mbconfig-software-left ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px 25px;
}
.mbconfig-software-left li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: flex-start;
}
.mbconfig-software-left li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #0155A2;
    font-size: 10px;
    background: #f0f7ff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #d1e7ff;
}
.mb-doc-link-left {
    display: inline-block;
}
/* Carousel Styles */
.mbconfig-software-img {
    margin-top: 40px;
    margin-bottom: 40px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.software-carousel .item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.software-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9) !important;
    color: #0155A2 !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid #eee !important;
}
.software-carousel .owl-nav button:hover {
    background: #0155A2 !important;
    color: #fff !important;
}
.software-carousel .owl-nav .owl-prev {
    left: -20px;
}
.software-carousel .owl-nav .owl-next {
    right: -20px;
}
.software-carousel .owl-dots {
    position: absolute;
    bottom: -55px;
    width: 100%;
    text-align: center;
}
.software-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc !important;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
    transition: 0.3s;
}
.software-carousel .owl-dot.active span {
    background: #0155A2 !important;
    width: 25px;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media only screen and (max-width: 991px) {
    .mbconfig-software-left {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .mbconfig-software-right {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .mbconfig-software-right-heading {
        font-size: 20px;
    }
    .download-title {
        font-size: 16px;
    }
    .download-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .mbconfig-software-left ul {
        grid-template-columns: 1fr;
    }
    .mbconfig-software-img {
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .software-carousel .owl-dots {
        bottom: -35px;
    }
}
