﻿/* 1.Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
::before,
::after {
    box-sizing: border-box;
}

a {
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

    a:hover,
    a:focus {
        text-decoration: none;
    }

p {
    margin: 0;
}

:root {
    --white: #fff;
    --text-black: #030410;
    --icon-dark-blue: #015C95;
    --text-grey: #54577A;
    --text-purple-blue: #54577a;
    --card-hover: #EBEDFA;
    --border-color: #9EB4FF;
    --icon-blue: #546FFF;
    --icon-blue-bg: #CDD4FB;
    --icon-green: #2DB854;
    --icon-green-bg: #D5F1DD;
    --icon-orange: #FFB762;
    --icon-orange-bg: #FFF1E0;
    --icon-purple: #C9B2ED;
    --icon-purple-bg: #F4F0FB;
    --status-green: #79FFBD;
    --status-red: #FF7691;
    --status-blue: #007bff;
    --status-orange: #fd7e14;
    --status-dark-green: #57CEBA;
    --status-grey: #D8D8D8;
    --status-pink: #FF80FF;
    --primary-button-bg: #546FFF;
}


body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.para-text-black {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-black);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.eb-garamond {
    font-family: "EB Garamond", serif;
}

.Plus-jakarta-sans {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.primary-blue-button,
.filter-btn {
    background-color: var(--primary-button-bg);
    color: var(--white);
    width: 100%;
    padding: 10px 25px;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    border: 1px solid var(--primary-button-bg);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    line-height: 16px;
}

    .primary-blue-button:hover {
        background-color: var(--icon-dark-blue);
        border: 1px solid var(--icon-dark-blue);
    }

.filter-btn {
    background-color: transparent;
    color: var(--primary-button-bg);
    width: auto;
}

    .filter-btn:hover {
        background-color: var(--primary-button-bg);
        color: var(--white);
    }

.form-check-input {
    border-color: var(--border-color);
}

.lp-left-image {
    height: 250px;
    margin-bottom: 20px;
}

    .lp-left-image img,
    .lp-right-image img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.lp-left-content p span {
    font-weight: 700;
}

.lp-left-content {
    max-width: 560px;
    margin: 30px auto 0;
}

    .lp-left-content p {
        padding-bottom: 20px;
    }

.para-inner-text {
    text-decoration: underline;
}

.lp-prev {
    width: 100%;
    display: inline-block;
}

    .lp-prev a {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-purple-blue);
        padding: 8px 16px;
    }

        .lp-prev a:hover {
            background-color: rgba(3, 4, 16, 0.04);
            border-radius: 10px;
        }

.lp-right-image {
    height: 130px;
}

.lp-input-field {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border: 1px solid rgb(220, 228, 255);
    border-radius: 10px;
    padding: 12px;
    width: 262px !important;
    width: 100%;
    margin: 0 auto 16px;
}

.lp-input-field-icon {
    margin-right: 10px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.lp-input-field input {
    border: none;
    color: var(--text-purple-blue);
    font-weight: 500;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

    .lp-input-field input::placeholder {
        color: #b9bdd4;
    }

    .lp-input-field input:focus {
        border: none;
        outline: none;
    }

.login-button .primary-blue-button {
    max-width: 262px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-right-wrapper p {
    margin: 32px 0;
    font-size: 14px;
}

.forgot-pwd {
    margin-top: 16px;
}

    .forgot-pwd a {
        text-decoration: none;
        font-size: 12px;
        color: var(--label-grey);
        line-height: 20px;
        font-weight: 600;
        font-family: "Plus Jakarta Sans", sans-serif;
    }

.lp-right-bottom a {
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    color: var(--label-grey);
    text-decoration: underline;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.lp-card {
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: rgba(106, 114, 142, 0.1) 0px 3px 32px;
}

.lp-right-content {
    padding: 56px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
}

.login-right {
    width: max-content;
    margin: 0 auto;
}

.login-page .row {
    align-items: center;
}

@media(max-width:1200px) {
    .lp-right-content {
        padding: 25px;
    }

    .login-page {
        padding-bottom: 30px;
    }
}

@media(max-width:991px) {
    .login-page .row {
        gap: 30px;
    }
}

@media(max-width:400px) {
    .lp-right-content {
        padding: 0px;
    }

    .lp-card {
        padding: 15px;
    }
}

.dashboard-content {
    height: 100%;
}

.sidebar {
    position: fixed;
    /* top: 70px; */
    top: 0;
    left: 0;
    height: 100%;
    width: 230px;
    /* z-index: 99999;*/
    transition: all 0.5s ease;
    background-color: var(--white);
    padding: 20px 0px;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
}

    .sidebar .nav-links {
        height: 100%;
        padding: 20px 5px 5px;
        overflow: auto;
    }

        .sidebar .nav-links::-webkit-scrollbar {
            display: none;
        }

        .sidebar .nav-links li {
            position: relative;
            list-style: none;
            transition: all 0.4s ease;
            cursor: pointer;
        }

            .sidebar .nav-links li.active:before,
            .sidebar .nav-links li:hover:before {
                opacity: 1;
            }

            .sidebar .nav-links li .iocn-link {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 5px;
                padding: 10px 15px;
            }

            .sidebar .nav-links li i {
                height: 40px;
                min-width: 38px;
                text-align: center;
                line-height: 40px;
                color: var(--icon-dark-blue);
                font-size: 20px;
                cursor: pointer;
                transition: all 0.3s ease 0s;
            }

                .sidebar .nav-links li i.arrow {
                    position: absolute;
                    right: 0;
                }

            .sidebar .nav-links li a .link_name {
                color: var(--text-purple-blue);
                padding-left: 10px;
            }

            .sidebar .nav-links li.active a .link_name {
                color: var(--icon-dark-blue);
                padding-left: 10px;
            }

    .sidebar .menu-icon i {
        font-size: 14px;
        color: var(--icon-dark-blue);
    }

    .sidebar .nav-links li:hover a .link_name {
        color: var(--icon-dark-blue);
    }

    .sidebar .nav-links li a {
        display: flex;
        align-items: center;
        text-decoration: none;
        width: 100%;
    }

        .sidebar .nav-links li a .link_name {
            font-weight: 600;
            font-size: 14px;
            text-align: left;
            transition: all 0.4s ease;
        }

    .sidebar .nav-links li.active,
    .sidebar .nav-links li:hover {
        text-decoration: none;
        color: var(--primary-color);
        border-radius: 8px;
        background: var(--card-hover);
        border-radius: 5px;
    }

        .sidebar .nav-links li.active .menu-icon path,
        .sidebar .nav-links li:hover .menu-icon path {
            fill: var(--primary-color);
        }

    .sidebar .nav-links li .sub-menu .link_name {
        /*display: none;*/
    }

    /* close js code */
    .sidebar.close {
        width: 70px;
        transition: all 0.5s ease;
    }

        .sidebar.close .iocn-link i.arrow {
            display: none;
        }

        .sidebar.close .logo-details {
            justify-content: center;
        }

        /* .sidebar.close .nav-links li i {
    min-width: 60px;
  }
   */
        .sidebar.close .nav-links {
            overflow: visible;
        }

        .sidebar.close .logo-details .logo_name {
            transition-delay: 0s;
            opacity: 0;
            pointer-events: none;
        }

        .sidebar.close .nav-links li .iocn-link {
            display: block;
        }

        .sidebar.close .nav-links li a .link_name {
            opacity: 0;
            pointer-events: none;
        }

        .sidebar.close .profile-details {
            background: none;
        }

        .sidebar.close .profile-details {
            width: 78px;
        }

        .sidebar.close ~ .home-section {
            left: 70px;
            width: calc(100% - 70px);
        }

        .sidebar.close .nav-links li .iocn-link {
            padding: 10px 10px;
        }

.topbar-menu {
    position: fixed;
    /* left: 0; */
    left: 220px;
    width: calc(100% - 220px);
    top: 0;
    /* width: 100%; */
    z-index: 999;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

body:has(.sidebar.close) .topbar-menu {
    left: 70px;
    width: calc(100% - 70px);
    transition: all 0.5s ease;
}

.topbar-menu .topbar-fixed .navbar > .container-fluid {
    justify-content: unset;
}

.topbar-menu .topbar-fixed .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.topbar-menu .topbar-fixed button.navbar-toggler {
    color: var(--primary-color);
    border: 0;
}

.topbar-menu .topbar-fixed .dropdown-menu li a {
    transition: all 0.3s ease;
    color: var(--text-grey);
    font-family: "roboto", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 10px 15px;
}

.topbar-menu .topbar-fixed .navbar {
    filter: drop-shadow(0px 4px 25px rgba(0, 0, 0, 0.05));
    background: var(--bg-white);
    height: 70px;
    width: 100%;
}

.topbar-menu .topbar-fixed .navbar-brand .desktop-logo,
.navbar-brand .desktop-logo {
    display: block;
}

.topbar-menu .topbar-fixed .navbar-brand .mobile-logo,
.navbar-brand .mobile-logo {
    display: none;
}

.topbar-menu .topbar-fixed .navbar-brand .desktop-logo,
.navbar-brand .desktop-logo {
    height: 65px;
    width: 60px;
    margin: 0 auto;
}

.topbar-menu .topbar-fixed .user-profile .dropdown-toggle::after {
    display: none;
}

.topbar-menu .topbar-fixed .user-profile label {
    color: var(--Secondary-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* .topbar-menu .topbar-fixed .user-profile-icon img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
  } */

.topbar-menu .topbar-fixed .user-profile-icon span {
    color: var(--text-purple-blue);
    padding: 0px 15px 0px 5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.topbar-menu .topbar-fixed .user-profile {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

    .topbar-menu .topbar-fixed .user-profile li p {
        color: var(--text-purple-blue);
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: center;
        padding-top: 10px;
    }

.topbar-menu .topbar-fixed .navbar-collapse {
    padding: 10px 23px;
    transition: all 0.2s ease;
}

.topbar-menu .dropdown-menu .user-profile li a {
    transition: all 0.3s ease;
    color: var(--text-purple-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.topbar-menu .user-profile li a:hover {
    background-color: var(--dropdown-hover-bg);
    color: var(--Secondary-color);
}

.topbar-menu .user-profile i {
    font-size: 16px;
    color: var(--text-purple-blue);
    padding-top: 6.5px;
}

.topbar-menu .topbar-fixed .navbar-collapse .logo-details svg {
    cursor: pointer;
}

.topbar-menu a.navbar-brand,
.navbar-brand {
    width: 200px;
}

.topbar-menu .topbar-fixed .dropdown .dropdown-menu {
    padding: 0;
}

button.navbar-toggler {
    display: none;
}

.profile-text {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: var(--card-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .profile-text p {
        margin: 0;
        font-size: 12px;
        color: var(--text-purple-blue);
    }

.topbar-menu .topbar-fixed .dropdown-menu i {
    padding-top: 0;
}

/* Topbar-menu Ends */

/* home section */
.home-section {
    position: relative;
    /* background-color: #fafafa; */
    height: calc(100vh - 70px);
    left: 230px;
    width: calc(100% - 230px);
    transition: all 0.5s ease;
    top: 70px;
    padding: 20px;
}

.home-content-wrapper {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px;
}

.d-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.d-card-item {
    border: 1px solid var(--border-color);
    padding: 5px;
    border-radius: 13px;
}

    .d-card-item:hover {
        background-color: var(--card-hover);
    }

.d-icon-wrapper {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    padding-bottom: 7px;
}
.d-icon {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .d-icon.court {
        background-color: var(--icon-blue-bg);
    }

        .d-icon.court i {
            color: var(--icon-blue);
            font-size: 14px;
        }

    .d-icon.follow {
        background-color: var(--icon-orange-bg);
    }

        .d-icon.follow i {
            color: var(--icon-orange);
            font-size: 14px;
        }

    .d-icon.approval {
        background-color: var(--icon-green-bg);
    }

        .d-icon.approval i {
            color: var(--icon-green);
            font-size: 14px;
        }

    .d-icon.writs {
        background-color: var(--icon-purple-bg);
    }

        .d-icon.writs i {
            color: var(--icon-purple);
            font-size: 14px;
        }

.d-card-case {
    display: flex;
    align-items: end;
    gap: 5px;
}

    .d-card-case h6 {
        font-size: 30px;
        color: var(--text-purple-blue);
        margin: 0;
    }

    .d-card-case p {
        font-size: 16px;
        color: var(--text-purple-blue);
        font-weight: 600;
    }

/*07/22/2025 modification started*/
.d-icon-content p,
.d-content-text h6,
.d-content-center p
{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black);
    margin: 0;
}
.case-header h6 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-black);
    margin: 0;
}
/*07/22/2025 modification ended*/
.d-card-content-wrapper {
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

.d-button {
    color: var(--text-purple-blue) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    border-radius: 5px;
    background: transparent;
    border: none;
}

    .d-button.active,
    .d-button:hover {
        background-color: var(--card-hover) !important;
        color: var(--text-black) !important;
    }

.d-content-center i {
    font-size: 100px;
    color: var(--text-black);
    opacity: 0.2;
    padding-bottom: 20px;
}

.dashboard-wrapper .nav-pills .nav-link {
    border-radius: 20px;
}

    .dashboard-wrapper .nav-pills .nav-link.active,
    .dashboard-wrapper .nav-pills .show > .nav-link {
        background-color: transparent;
    }

.dashboard-wrapper .nav-pills .nav-link {
    padding: 0 0 20px 0;
}

/*    .dashboard-wrapper .nav-pills .nav-link:last-child {
        padding-bottom: 0;
    }*/

.result-table thead tr,
.result-table thead tr th {
    background-color: var(--card-hover);
    color: var(--text-purple-blue);
    font-size: 14px;
}

    /*05/20/2025 Modification started*/
    .result-table thead tr th {
        /*padding: 15px;*/
    }

.table-button {
    font-size: 12px;
    padding: 5px 20px;
    border: 1px solid var(--text-purple-blue);
    color: var(--text-purple-blue);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

    .table-button:hover {
        background-color: var(--text-purple-blue);
        color: var(--white);
        transition: all 0.3s ease-in-out;
    }

.result-table tbody td {
    color: var(--text-black);
    font-size: 14px;
    /*padding: 15px;*/
}
    .result-table tbody td a {
        text-decoration: underline;
        color: var(--text-black);
    }

.result-table tbody tr td {
    border-bottom: 1px solid rgba(84, 87, 122, 0.2);
}

.result-table tbody tr:hover td {
    background-color: var(--card-hover);
}

/* breadcrumbs */
.breadcrumb-item + .breadcrumb-item::before {
    font-family: 'FontAwesome';
    content: '\f0da';
    color: var(--text-purple-blue);
    font-size: 13px;
}

.breadcrumb-item,
.breadcrumb-item a {
    font-size: 12px;
    color: var(--text-purple-blue);
}

/* case reference */
.case-header i {
    font-size: 18px;
    padding-top: 3px;
}

.case-card-head .para-text-black {
    font-weight: 600;
}

.case-card-head p {
    font-size: 14px;
    color: var(--text-purple-blue);
}

.case-card,
.req-card-item {
    background-color: var(--white);
    border-radius: 20px !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    cursor: pointer;
}

.address-fields label,
.non-com-fields label {
    font-size: 14px;
    color: var(--text-purple-blue);
    font-weight: 500;
    margin-bottom: 5px;
}

.address-fields input,
.form-control {
    border: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-grey);
}

.case-info-content .accordion-button:not(.collapsed),
.case-info-content .accordion-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 10px;
}

.case-info-content .accordion-body {
    padding: 10px;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.case-info-content .accordion-button {
    font-size: 20px;
    color: var(--text-black);
    font-weight: 400;
}

.case-info-content .case-card {
    border-radius: 15px !important;
    padding: 10px;
}

.status-green {
    background-color: var(--status-green);
    padding: 7px;
    border-radius: 5px;
    display: block;
}

.status-blue {
    background-color: var(--status-blue);
    padding: 7px;
    border-radius: 5px;
    display: block;
}

.status-grey {
    background-color: var(--status-grey);
    padding: 7px;
    border-radius: 5px;
    display: block;
}

.status-orange {
    background-color: var(--status-orange);
    padding: 7px;
    border-radius: 5px;
    display: block;
}

.status-dark-green {
    background-color: var(--status-dark-green);
    padding: 7px;
    border-radius: 5px;
    display: block;
}

.status-pink {
    background-color: var(--status-pink);
    padding: 7px;
    border-radius: 5px;
    display: block;
}

.status-red {
    background-color: var(--status-red);
    padding: 7px;
    border-radius: 5px;
    display: block;
}

.status-purple-grey {
    background-color: var(--card-hover);
    padding: 7px;
    border-radius: 5px;
    display: block;
}

.documents-tab .result-table a {
    color: var(--icon-blue);
}

.req-card-item {
    width: 100%;
    min-width: 300px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 25px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .req-card-item p {
        color: var(--text-purple-blue);
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 15px;
    }

    .req-card-item i {
        font-size: 30px;
        color: var(--icon-blue);
        opacity: 0.8;
    }

.req-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    height: 100%;
    padding: 30px 0;
}

/* Case page */
.case-filter label,
.case-filter input,
.case-filter select,
.filter-drop {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-purple-blue);
    border: 1px solid var(--text-purple-blue);
    border-radius: 6px;
    padding: 6px 12px;
    margin: 0;
    opacity: 1;
}

.case-filter label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    color: var(--text-black);
    text-wrap: nowrap;
}

.case-filter input,
.filter-drop {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.case-filter select,
.filter-drop {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

    .form-control:focus,
    .filter-drop:hover {
        border-color: inherit;
        outline: 0;
        box-shadow: none;
    }

.case-filter .form-check {
    padding-left: 35px;
}

    .case-filter .form-check input {
        padding: 0;
        height: 16px;
        width: 16px;
    }

    .case-filter .form-check label {
        border: none;
    }

/* cases end */
/* legalforms */
.legal-wrapper .primary-blue-button i {
    font-size: 14px;
}

/* nested table */
.parent-row {
    cursor: pointer;
    background-color: #f5f7fa;
    font-weight: 500;
}

    .parent-row:hover {
        background-color: #e6eaf0;
    }

    .parent-row td:first-child {
        position: relative;
        padding-left: 30px;
    }

        .parent-row td:first-child::before {
            /*content: "▶";*/
            position: absolute;
            left: 10px;
            transition: transform 0.3s;
            font-size: 12px;
        }

    .parent-row.open td:first-child::before {
        transform: rotate(90deg);
    }

.child-table-container {
    display: none;
    padding: 0;
    background-color: #f9f9f9;
}

    .child-table-container.open {
        display: table-row;
    }

    .child-table-container td {
        padding: 0;
    }

.child-table {
    margin: 0;
    box-shadow: none;
}

    .child-table th {
        background-color: #67809f;
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .child-table td {
        font-size: 0.9em;
        padding: 8px 15px 8px 35px;
    }

.legal-table .result-table tbody td a {
    color: var(--icon-blue);
    padding-left: 16px;
}

/* fee schedule */
.fee-dropdown button {
    border: 1px solid var(--border-color) !important;
    text-align: left;
}

.fee-dropdown {
    position: relative;
}

    .fee-dropdown .dropdown-toggle::after {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }

.fee-wrapper .result-table tr a {
    color: var(--icon-blue);
}

/* notice page */
.non-calendar p {
    color: var(--text-purple-blue);
    font-size: 14px;
    padding-top: 10px;
}

    .non-calendar p span {
        color: red;
    }

.non-calendar input {
    max-width: 250px;
    margin-top: 10px;
}

.add-notice p {
    font-size: 12px;
    color: var(--primary-button-bg);
    padding-top: 10px;
    cursor: pointer;
}

    .add-notice p:hover {
        color: var(--text-purple-blue);
    }

.result-table th span {
    color: red;
    font-weight: 400;
}

.non-com-fields label span {
    color: red;
}

.non-com-fields .case-button {
    margin-top: 30px;
}

.non-com-fields button.dropdown-toggle:hover {
    border: 1px solid var(--border-color);
}

.non-com-fields button.dropdown-toggle {
    position: relative;
    text-align: left;
}

    .non-com-fields button.dropdown-toggle::after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
    }

.request-button {
    background-color: var(--icon-green);
    border: 1px solid var(--icon-green);
}

.cancel-button {
    background-color: #cd5c5c;
    border: 1px solid #cd5c5c;
}
/* responsive */
@media (min-width: 991.9px) {
    .topbar-menu .topbar-fixed .dropdown:hover .dropdown-menu {
        display: block;
        right: 0;
        width: min-content;
        top: 100%;
    }

    .user-profile .dropdown:hover .dropdown-menu {
        display: block;
        top: 30px;
    }
}

@media (max-width: 1199.9px) {
    .topbar-menu .topbar-fixed .navbar {
        height: 70px;
        width: 100%;
        padding: 0px;
    }

        .topbar-menu .topbar-fixed .navbar .navbar-nav .nav-link {
            font-size: 14px;
            padding: 5px 0px;
        }

    .topbar-menu .topbar-fixed .navbar-brand {
        padding-right: 0px;
    }

    .topbar-menu .topbar-fixed .navbar-nav .dropdown #down-arrow {
        font-size: 14px;
        margin-left: 5px;
    }

    .topbar-menu .topbar-fixed .dropdown-menu li a {
        font-size: 14px;
    }

    .topbar-menu .topbar-fixed button.navbar-toggler {
        order: -1;
    }
}

@media(max-width:1200px) {
    .collapse.show {
        visibility: visible !important;
    }
}

@media (max-width: 991.9px) {
    .topbar-menu .topbar-fixed .navbar-collapse {
        padding: 15px 15px;
    }

    .home-section {
        left: 70px;
        width: calc(100% - 78px);
    }

    .topbar-menu .topbar-fixed #navbarSupportedContent1 {
        background-color: var(--bg-white);
        position: absolute;
        top: 7px;
        left: 15px;
        display: block;
    }

    .dashboard-wrapper .nav-pills .nav-link:nth-child(odd) {
        padding-right: 20px;
    }

    .dashboard-wrapper .tab-content,
    .dashboard-wrapper .nav-pills {
        padding: 0;
    }
}

@media (max-width: 575.9px) {
    .topbar-menu .topbar-fixed .navbar-brand {
        height: 100%;
        width: auto;
    }

        .topbar-menu .topbar-fixed .navbar-brand .desktop-logo {
            display: none;
        }

        .topbar-menu .topbar-fixed .navbar-brand .mobile-logo {
            display: block;
        }

        .topbar-menu .topbar-fixed .navbar-brand .mobile-logo {
            height: 100%;
            width: 30px;
        }

    .topbar-menu .topbar-fixed .navbar-brand {
        border-right: 0px;
    }

    .topbar-menu .topbar-fixed #navbarSupportedContent1 {
        left: 15px;
    }

    /* close */
    .sidebar.close ~ .home-section {
        left: 0;
        width: 100%;
    }

    .home-section {
        left: 0px;
        width: 100%;
    }

    .sidebar.close {
        width: 0px;
        transition: all 0.5s ease;
    }

        .sidebar.close .nav-links {
            overflow: hidden;
        }

    body:has(.sidebar.close) .topbar-menu {
        left: 00px;
        width: calc(100% - 00px);
        transition: all 0.5s ease;
    }
}

@media (max-width: 420px) {
    .sidebar.close .nav-links li .sub-menu {
        display: none;
    }
}
.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.custom-tooltip {
    visibility: hidden;
    background-color: #fff;
    color: #000;
    padding: 8px;
    border: 1px solid #ccc;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    font-size: 12px;
    width: 100%;
    min-width: 150px;
    max-width: 300px;
    white-space: normal;
    word-wrap: break-word;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    text-align: left;
}

    .custom-tooltip.right {
        bottom: unset;
        right: -10px;
        left: unset;
        top: 50%;
        transform: translate(100%,-50%);
    }

    .custom-tooltip.left {
        bottom: unset;
        left: -10px;
        top: 50%;
        transform: translate(-100%, -50%);
    }

    .custom-tooltip.top {
        bottom: 100%;
        left: 50%;
        top: unset;
        transform: translateX(-50%);
        margin-bottom: 8px;
    }

.tooltip-wrapper:hover .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

.defendant-card {
    transition: all 0.2s ease;
    border-radius: 8px;
}

.defendant-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.remove-defendant {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.defendant-info {
    flex: 1;
    min-width: 0;
}
.sub-menu {
    display: none;
    padding-left: 20px;
    list-style: none;
}

li.showMenu .sub-menu {
    display: block;
}

.arrow {
    transition: transform 0.3s ease;
}

li.showMenu .arrow {
    transform: rotate(180deg);
}


.dashboardNav{
    margin:0;
    flex-grow:1;
}
.d-icon-content p{
    font-size:16px;
}
.d-icon.writs i{
    font-size:12px;
}

.d-card-case h6{
    font-size:21px;
}

.d-icon-wrapper{
    flex-wrap:nowrap;
}
.dashboard-wrapper .nav-pills .nav-link {
    height: 100%;
    display: flex;
    flex-grow: 1;
}
.d-card-item{
    width:100%;
}