  :root {
        --theme-color: #689f38;
        --light-theme: #eef2ff;
    }

    body {
        /* background: linear-gradient(135deg, #eef2ff, #ffffff); */
    }

    .theme-bg {
        background-color: var(--theme-color);
        color: white;
    }

    .theme-text {
        color: var(--theme-color);
    }

    .form-card {
        border-radius: 0px;
        overflow: hidden;
        border: none;
    }

    .section-title {
        font-weight: 600;
        color: var(--theme-color);
        border-left: 4px solid var(--theme-color);
        padding-left: 10px;
        margin-top: 25px;
    }

    .table thead {
        background-color: var(--theme-color);
        color: white;
    }

    .btn-theme {
        background-color: var(--theme-color);
        color: white;
    }

    .btn-theme:hover {
        color: #fff;
        background-color: #162d6b;
    }

    .fixed-input {
        width: 160px;          /* fixed width */
        min-width: 160px;      /* prevents shrinking */
    }

    .table-fixed {
        min-width: 1100px;     /* table minimum width */
    }
    .pad-l-r{
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    .pb-0{
        margin-bottom: 0px !important;
    }

    .confirmModal .modal-header{
        border-bottom: 0px !important;
    } 
    .confirmModal .modal-footer{
        border-top: 0px !important;
    }