@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');

:root {
    --primary-blue: #1C6FE8;
    --primary-blue-hover: #165AC0;
    --accent-yellow: #F7B30A;
    --accent-yellow-hover: #D89C08;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
}

body {
    font-family: 'Open Sans', sans-serif !important;
    background: var(--bg-white) !important;
    color: var(--text-dark);
}

.nopad {
    padding: 0px !important;
    margin: 0px !important;
}

.left-area {
    min-height: 94vh;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.logo-area {
    background: var(--bg-white);
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.sidebar {
    background: var(--bg-white);
    padding: 0px;
    margin: 0px;
    border-right: 1px solid var(--border-color);
}

.admin-bar {
    background: var(--bg-white);
    color: var(--text-dark);
    z-index: 999;
    padding: 0px 12px 0px 0px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--border-color);
}

.logo-area img {
    height: 39px;
}

.qr-rt-testimnial {
    clear: both;
    font-size: 50px;
    color: #dedede;
    margin-top: -20px;
}

.copyrite a {
    color: var(--text-dark);
}

.copyrite a:hover {
    color: var(--primary-blue);
}

.adm-navi-area ul {
    padding: 0px;
    margin: 0;
}

.adm-navi-area ul li {
    list-style: none;
    float: left;
}

.adm-navi-area ul li a {
    color: var(--text-dark);
    padding: 19px 12px;
    display: block;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.adm-navi-area ul li a:hover {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
}

.adm-navi-area {
    float: left;
}

.adm-log-bar {
    float: right;
    padding: 12px 0px
}

.social-media ul {
    padding: 0px;
    margin: 0px;
}

.social-media ul li {
    float: left;
    list-style: none;
    font-size: 20px;
}

.social-media ul li a {
    color: var(--text-dark);
    padding: 0px 6px 0px;
    display: block;
    position: relative;
    top: 2px;
    transition: all 0.3s ease;
}

.social-media ul li a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.content-area {
    background: var(--bg-light) !important;
}

.cnt {
    background: var(--bg-light);
    padding: 40px 20px 40px;
    min-height: 94vh;
    position: relative;
    top: 0;
    width: 100%;
}

.pf-imgs {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 2px solid #d8543b;
    float: left;
    overflow: hidden;
}

.pf-imgs img {
    height: 100%;
}

.profile-area {
    padding: 18px 38px;
    background: var(--bg-white);
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pf-name {
    float: left;
    padding: 15px 12px;
}

.pf-name h4 {
    font-size: 26px !important;
    margin-bottom: 0px;
}

nav ul {
    padding: 0px;
    margin: 0px;
}

nav ul li {
    padding: 0px;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 15px 28px;
    display: block;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm);
}

nav ul li:hover, nav ul li.active, nav ul li:focus {
    background: var(--primary-blue) !important;
    text-decoration: none;
}

nav ul li:hover a, nav ul li.active a, nav ul li:focus a {
    color: white;
    text-decoration: none;
}

nav ul li a .fa {
    margin-right: 9px;
}

nav ul li a:before {
    content: "\f105";
    font: normal normal normal 14px/1 FontAwesome;
    padding-right: 11px;
}

nav ul li ul.submenu {
    padding: 0px;
    margin: 0px;
    background: rgba(45, 45, 45, 0.58);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: none;
}

nav ul li.active ul.submenu {
    display: block !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav ul li ul.submenu li a {
    padding: 12px 28px !important;
}

.adm-navi-area ul li.active a {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
}

.breadcrumb ol {
    padding: 0px;
    margin: 0px;
}

.breadcrumb ol li {
    list-style: none;
    padding: 5px 5px;
    float: left;
    color: #444343;
}

.breadcrumb ol li a {
    text-decoration: none;
    color: #000
}

.panel-default > .panel-heading {
    background: var(--primary-blue) !important;
    color: white !important;
    border-radius: var(--border-radius-sm);
    border: 0px;
    padding: 14px 19px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.panel-default > .panel-heading:hover {
    background: var(--primary-blue-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 111, 232, 0.2);
}

/* Override inline styles for all panel headings */
.panel-heading {
    background: var(--primary-blue) !important;
    color: white !important;
}

.panel-heading:hover {
    background: var(--primary-blue-hover) !important;
}

.panel-heading h4,
.panel-heading .panel-title {
    color: white !important;
}

.panel-heading h4 *,
.panel-heading .panel-title * {
    color: white !important;
}

.panel-collapse {
    padding: 15px 21px;
    box-shadow: none;
    border: 0px !important;
    border-radius: var(--border-radius-sm) !important;
    overflow: hidden;
    background: var(--bg-white);
}

.panel-group {
    margin-bottom: 20px !important;
}

.panel-group .panel {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.adm-log-bar .dropdown {
    margin-left: 9px;
}

button.btn.btn-primary.dropdown-toggle {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 7px 35px 7px 11px;
    border-radius: var(--border-radius-sm);
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

button.btn.btn-primary.dropdown-toggle:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

span.fa.fa-angle-down.dd-down {
    position: absolute;
    background: var(--bg-light);
    top: 0;
    right: 0;
    padding: 10px 7px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    transition: all 0.3s ease;
}

button.btn.btn-primary.dropdown-toggle:hover span.fa.fa-angle-down.dd-down {
    background: var(--primary-blue-hover);
    color: white;
}

.highlight {
    background: var(--bg-white);
    margin-bottom: 20px;
    padding: 16px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.col-md-3.hl-data {
    margin-bottom: 15px;
}

.dl-dt-icon {
    background: var(--primary-blue) !important;
    text-align: center;
    color: white !important;
    vertical-align: middle;
    font-size: 42px;
    padding: 7px;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    transition: all 0.3s ease;
}

.dl-dt-icon i {
    color: white !important;
}

.dl-dt-txt {
    border: 1px solid var(--border-color);
    padding: 7px 14px 10px;
    background: var(--bg-white);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.highlight:hover .dl-dt-icon {
    background: var(--primary-blue-hover);
    transform: scale(1.05);
}

.dl-dt-txt .price {
    font-size: 25px;
    color: var(--text-dark) !important;
    font-weight: 600;
}

/* Force text colors in highlight boxes to be visible */
.hl-data,
.hl-data *,
.dl-dt-txt,
.dl-dt-txt *,
.dl-dt-txt .price,
.dl-dt-txt .sub,
.dl-dt-txt .price .pull-right,
.dl-dt-txt .price .pull-left,
.dl-dt-txt .sub .pull-right,
.dl-dt-txt .sub .pull-left {
    color: var(--text-dark) !important;
}

.green .dl-dt-icon {
    background: var(--primary-blue) !important;
    color: white !important;
}

.green .dl-dt-icon i {
    color: white !important;
}

.green .dl-dt-txt {
    border: 1px solid var(--border-color);
}

.blue .dl-dt-icon {
    background: var(--primary-blue) !important;
    color: white !important;
}

.blue .dl-dt-icon i {
    color: white !important;
}

.blue .dl-dt-txt {
    border: 1px solid var(--border-color);
}

.oringe .dl-dt-icon {
    background: var(--primary-blue) !important;
    color: white !important;
}

.oringe .dl-dt-icon i {
    color: white !important;
}

.oringe .dl-dt-txt {
    border: 1px solid var(--border-color);
}

.purple .dl-dt-icon {
    background: var(--primary-blue) !important;
    color: white !important;
}

.purple .dl-dt-icon i {
    color: white !important;
}

.purple .dl-dt-txt {
    border: 1px solid var(--border-color);
}

span.bar {
    color: #ebecec;
    float: right;
    font-size: 27px;
    padding-right: 10px;
    display: none;
    cursor: pointer
}

a.closebtn {
    float: right;
    position: absolute;
    right: 19px;
    font-size: 35px;
    color: #d8543b;
    display: none;
}

.page-heading-sec h1 {
    padding: 13px;
    margin: 0px;
    font-size: 23px;
    color: var(--text-dark);
}

.page-heading-sec .label-danger {
    font-size: 14px;
    font-weight: normal;
}

.portlet-title h4 {
    color: white;
    border-radius: var(--border-radius-sm);
    border: 0px;
    padding: 14px 19px;
    cursor: pointer;
    background: var(--primary-blue);
}

.portlet-body .portlet-body {
    padding: 15px 21px;
    box-shadow: none !important;
    border: 0px !important;
    border-radius: var(--border-radius-sm) !important;
    background: var(--bg-white);
    margin-top: -10px;
}

.portlet-body {
    margin-bottom: 0;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    padding-right: 15px;
    padding-left: 15px;
    background: var(--bg-white);
}

.page-header.title {
    margin-bottom: 20px;
    padding: 16px;
    margin: 0px;
    clear: both;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 19px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.page-header.title h1 {
    padding: 0px;
    margin: 0px;
    font-size: 23px;
    color: var(--text-dark);
}

.portlet {
    margin-top: 22px;
}

.portlet.portlet-basic {
    margin-top: 0 !important;
}

div#dyntable_commission_list_wrapper {
    background: var(--bg-white);
    padding: 23px 23px 0px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#loginbox .panel-info > .panel-heading {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

#loginbox .panel-info {
    border-color: var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

#loginbox .panel-info > .panel-heading a {
    color: #fff !important
}

#loginbox .panel-body {
    background: var(--bg-white);
}

#loginbox .input-group-addon {
    background-color: var(--bg-light) !important;
    border-color: var(--border-color) !important;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

#loginbox form-group a {
    color: var(--primary-blue) !important;
}

#loginbox .btn-danger {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

#loginbox .btn-danger:hover {
    background-color: var(--primary-blue-hover);
    border-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 111, 232, 0.3);
}

.content-white-area .portlet {
    background: var(--bg-white);
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 19px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.content-white-area .alert {
    margin-left: 15px;
    margin-right: 15px;
}

.newpass {
    background: var(--bg-white);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -19px;
    padding-top: 22px;
    border-radius: var(--border-radius);
}

.login-body {
    background: var(--bg-light);
}

form.yt-share {
    display: inline-block !important;
}

section.contact-area.login-page {
    color: var(--text-dark);
    padding: 15vh 0px 5vh;
}

section.contact-area.login-page #welcome {
    margin: 0 auto;
    display: table;
    float: none;
    margin-top: 20px;
    padding: 20px 20px;
    background: var(--bg-white);
    margin-bottom: 21px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.wt-href {
    color: var(--primary-blue) !important;
    clear: both;
    font-size: 13px;
}

a.returntoaff {
    color: var(--primary-blue);
}

a.returntoaff:hover {
    color: var(--primary-blue-hover);
}

.dl-dt-txt {
    height: 74px;
    font-size: 13px !important;
}

.dl-dt-icon {
    height: 74px;
    font-size: 33px;
    padding: 12px;
}

.dl-dt-txt .price {
    font-size: 21px;
}

div#area-affiliate svg {
    width: 100% !important;
    overflow: hidden;
}

.dl-dt-txt .price .pull-right {
    font-size: 15px;
    position: absolute;
    right: 10px;
}

.dl-dt-txt .sub .pull-right {
    font-size: 12px !important;
    position: absolute;
    top: 26px;
    right: 12px;
}

.dl-dt-txt .sub {
    line-height: 15px;
    padding-top: 3px;
}

.tid-form select {
    margin-bottom: 15px;
}

.footer {
    clear: both;
    width: 100%;
    z-index: 9999;
    background: var(--bg-white);
    position: relative;
    bottom: 0;
    text-align: center;
    padding: 14px;
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
}

nav ul li ul.submenu li a.active {
    background: rgba(23, 23, 23, 0.65);
}

.portlet-footer {
    background: var(--bg-white);
    padding: 16px 22px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border-top: 1px solid var(--border-color);
}

.portlet-basic.testimonials .widget {
    border: 1px solid #ccc;
}

.dataTables_wrapper label, .dataTables_filter input[type=text] {
    width: 100%;
}

.dataTables_processing {
    padding: 3px 19px;
}

@media only screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1507px) {
    .dl-dt-icon {
        padding: 18px 7px;
        font-size: 27px;
    }

    .dl-dt-txt .sub .pull-right {
        font-size: 10px !important;
    }

    .dl-dt-txt .sub .pull-left {
        width: 70px;
    }

    .dl-dt-txt .price {
        font-size: 18px;
    }
}

body.home span.bar {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .sidenav {
        height: 100%;
        width: 0;
        position: absolute;
        z-index: 9999;
        top: 0;
        left: 0;
        background-color: #111;
        overflow-x: hidden;
        padding-top: 60px;
        transition: 0.5s;
    }

    a.closebtn, span.bar {
        display: block;
    }

    .dl-dt-txt, .dl-dt-icon {
        height: 69px;
        padding: 9px 9px;
    }

    .dl-dt-txt {
        padding: 5px 9px
    }

    .logo-area img {
        width: 78%;
    }
}

.portlet .portlet-body img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 991px) {
    .logo-area img {
        width: auto !important;
    }

    .logo-area {
        height: auto !important;
    }

    .adm-navi-area {
        width: 100%;
        border-bottom: 1px solid #556273;
    }

    .adm-navi-area ul {
        display: table;
        margin: 0 auto;
    }

    .adm-log-bar {
        float: none;
        margin: 0 auto;
        display: table;
    }

    .dl-dt-icon {
        height: 55px;
    }

    .dl-dt-txt {
        margin-bottom: 10px;
    }

    .banner-port img {
        width: 100%;
    }

    .dataTable-scroll {
        overflow-x: scroll;
    }

    .dataTable-scroll .dataTable {
        min-width: 900px !important;
    }

    body.home .logo-area {
        text-align: center;
    }

    input[type=file] {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .form-group input.btn.btn-sm.btn-primary {
        margin-top: 10px;
    }

    .dataTable-scroll {
        overflow-x: scroll;
    }

    .dataTable-scroll .dataTable {
        min-width: 900px !important;
    }

    .portlet-footer .btn {
        width: 100%;
        margin-bottom: 5px;
    }

    .page-header.title {
        margin-left: 0;
        margin-right: 0;
    }

    .content-area .panel-group.col-md-12 { /*padding:0px;*/
    }

    body.home span.bar {
        display: none;
    }

    body.home .logo-area {
        text-align: center;
    }

    .well span.pull-right {
        float: none !important;
    }

    span.pull-right.md-full {
        float: right !important;
    }
}

@media only screen and (max-width: 321px) {
    .logo-area img {
        width: 74% !important;
    }
}

@media only screen and (max-width: 598px) {
    .adm-navi-area, .adm-log-bar {
        width: 100%;
        border-bottom: 1px solid #222a35;
    }

    .adm-navi-area ul {
        margin: 0 auto;
        display: table;
    }

    .logo-area img {
        width: 68%;
    }

    .adm-navi-area ul li a {
        font-size: 12px;
        padding: 15px 9px;
    }

    .col-md-3.hl-data {
        width: 100%;
        padding: 0px;
    }

    .social-media {
        width: 100%;
        border-top: 1px solid #222a35;
        margin-top: 10px;
        padding-top: 10px;
    }

    .social-media ul {
        display: table;
        margin: 0 auto;
    }

    .dropdown.pull-right.mb-left {
        float: left !important;
    }

    .page-heading-sec:after {
        content: '';
        clear: both;
        display: block;
    }

    .page-heading-sec .pull-right {
        float: left !important;
    }

    .table-scroll .table {
        width: 200% !important;
    }

    .table-scroll {
        overflow: auto;
    }

    .keywords-google {
        word-wrap: break-word;
        width: 100%;
    }

    .list-group-item {
        word-wrap: break-word;
    }

    .dataTable-scroll {
        overflow-x: scroll;
    }

    .dataTable-scroll .dataTable {
        min-width: 900px !important;
    }

    span.pull-right.mb-sects {
        clear: both;
        float: left;
        width: 100%;
    }

    .pull-left.md-full {
        width: 100%;
        clear: both !important;
        display: block;
    }

    .login-page-logo img {
        width: 100%;
    }

    .text-center.footer-logo img {
        width: 80%;
        padding-top: 20px;
    }

    .login-block .input-group {
        width: 100%;
    }

    .dropdown.pull-right.mb-left > .dropdown-menu {
        left: 0;
        right: inherit;
    }

    .dataTables_wrapper {
        overflow-x: scroll !important;
    }

    .dataTables_wrapper .table.table-bordered {
        width: 150% !important;
        max-width: 150% !important;
    }

    .idevads-container_1 {
        width: 100% !important;
        margin: 0 !important;
    }
}

/*--------- Additional Style 5-18-2018 ---------*/
i.icon-search:before {
    content: "\f002";
    font: normal normal normal 14px/1 FontAwesome;
}

.morris-hover.morris-default-style {
    position: absolute;
}

a[data-pin-log="button_pinit"] {
    float: left;
    margin-right: 5px;
}

.dataTables_length select {
    width: 98px;
}

.dataTables_paginate.paging_bootstrap {
    text-align: right;
}

/*--------- Additional Style 5-18-2018 ---------*/
#dyntable_Pending_Debits_filter .form-control {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" id="spyglass" viewBox="0 0 22 22" height="22" width="22"><path d="m 10.011718,5.0898489 c -2.7000005,0 -4.9003915,2.2004 -4.9003915,4.9003996 0,2.6999995 2.200391,4.8983995 4.9003915,4.8983995 1.154374,0 2.204251,-0.4184 3.042969,-1.0898 l 3.207031,3.1113 0.626953,-0.6465 -3.185547,-3.0879 c 0.743242,-0.8594 1.208984,-1.964 1.208984,-3.1854995 0,-2.6999996 -2.20039,-4.9003996 -4.90039,-4.9003996 z m 0,1 c 2.2,0 3.90039,1.7004 3.90039,3.9003996 0,2.1999995 -1.70039,3.8983995 -3.90039,3.8983995 -2.2000005,0 -3.9003915,-1.6984 -3.9003915,-3.8983995 0,-2.1999996 1.700391,-3.9003996 3.9003915,-3.9003996 z" style="fill:#808080"/></svg>');
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: 0px 5px !important;
    padding-left: 22px;
}

/*--------- Additional Style 7-4-2018 ---------*/
.dataTables_filter label:before
{
    content: "\f002";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    z-index: 9;
    left: 0;
    background: #dcdcdc;
    padding: 10px 12px;
}
.dataTables_filter {}

div.dataTables_wrapper div.dataTables_filter label{
    width: auto;
    position: relative;
}
.dataTables_filter span.input-group-addon {
    display: none;
}

.dataTables_filter input.form-control.form-control-sm {
    float: right;
}

.dataTables_filter .input-group {
    display: block;
}

.dataTables_filter .form-control.form-control-sm {
    padding-left: 37px;
}


/* Modern Button Styles */
.btn {
    border-radius: var(--border-radius-sm) !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover) !important;
    border-color: var(--primary-blue-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 111, 232, 0.3);
}

.btn-warning {
    background-color: var(--accent-yellow) !important;
    border-color: var(--accent-yellow) !important;
    color: white !important;
}

.btn-warning:hover {
    background-color: var(--accent-yellow-hover) !important;
    border-color: var(--accent-yellow-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 179, 10, 0.3);
}

/* Modern Form Styles */
.form-control {
    border-radius: var(--border-radius-sm) !important;
    border: 1px solid var(--border-color) !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(28, 111, 232, 0.1) !important;
}

/* Modern Card/Widget Styles */
.widget {
    border-radius: var(--border-radius) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    border: 1px solid var(--border-color) !important;
    background: var(--bg-white) !important;
}

/* Modern Table Styles */
.table {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
}

.table thead th {
    background: var(--bg-light);
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.table tbody tr:hover {
    background: rgba(28, 111, 232, 0.05);
}

/* Modern Alert Styles */
.alert {
    border-radius: var(--border-radius-sm) !important;
    border: 1px solid var(--border-color) !important;
}

.alert-info {
    background: rgba(28, 111, 232, 0.1) !important;
    border-color: var(--primary-blue) !important;
    color: var(--primary-blue-hover) !important;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: #10b981 !important;
    color: #059669 !important;
}

.alert-warning {
    background: rgba(247, 179, 10, 0.1) !important;
    border-color: var(--accent-yellow) !important;
    color: var(--accent-yellow-hover) !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border-radius: var(--border-radius-sm) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
    border: 1px solid var(--border-color) !important;
}

.dropdown-menu li a {
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--primary-blue) !important;
    color: white !important;
}

/* Additional text visibility fixes for all white backgrounds */
.highlight,
.highlight * {
    color: var(--text-dark) !important;
}

/* Panel title text - override inline styles */
.panel-title,
.panel-title *,
h4.panel-title {
    color: white !important;
}

/* Table text colors */
table,
table td,
table th {
    color: var(--text-dark) !important;
}

/* Ensure all text in content area is visible */
.cnt,
.cnt p,
.cnt div,
.cnt span,
.cnt label {
    color: var(--text-dark);
}

/* Progress bar text */
.progress {
    background: var(--bg-light) !important;
    border-radius: var(--border-radius-sm) !important;
}

/* Breadcrumb styling */
.breadcrumb {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    padding: 10px 15px;
}

.breadcrumb ol li,
.breadcrumb ol li a {
    color: var(--text-dark);
}

.breadcrumb ol li a:hover {
    color: var(--primary-blue);
}

/* List group items */
.list-group-item {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm) !important;
    margin-bottom: 5px;
}

.list-group-item:hover {
    background: rgba(28, 111, 232, 0.05);
}

/* Well component */
.well {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-dark);
}

@media screen And (max-width:375px){
    .page-header > h1 > span {float:none !important;}

}