@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --themecolor: #36d991;
    --themecolorHover: #198754;
}

a {
    color: var(--themecolor);
}

a:hover {
    color: var(--themecolorHover);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border;
}

body {
    font-family: 'Barlow', sans-serif;
    transition: .5s;
    background: #040508;
    color: #fff;
    min-height: 100vh;
}



form.complain-form {
    background: #141414;
    max-width: 400px;
    margin: 20px auto;
    padding: 0px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 20px #000;
}

label.complain-label {
    color: #fff;
    width: 100%;
}


.complain-input {
    width: 100%;
    margin-bottom: 20px;
    background: black;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    box-shadow: 4px 3px 13px #080808;
    color: #fff;
}

.complain-input:-internal-autofill-selected {
    background-image: black !important;
    background-color: -internal-light-dark(rgb(0 0 0), rgba(0, 0, 0)) !important;
}

.priority {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    margin-bottom: 20px;
}

.priority label {
    text-align: center;
    padding: 5px 5px;
    background: #314031;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: .3s;
}

.priority label:has(input:checked) {
    background: green;
}

.form-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: green;
    align-items: center;
    font-size: 18px;
    color: #fff;
}

.navbar-brand img {
    width: 200px;
    background: #ffeaea;
    padding: 0 5px;
    border-radius: 3px;
}

.complain-list {
    margin: 30px 0px;
    padding: 20px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: #212529;
}

.dashboardcards {
    margin-top: 10px;
    background-color: #212529;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #000;
}

li.nav-item a {
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    min-width: 100px;
    display: block;
    text-align: center;
}

.remarkslist {
    background: #040508;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    position: relative;
}

.remarkslist date {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #a3a3a3;
}

.remarkstechName {
    text-align: right;
}

.remarkstask p {
    margin: 0;
    color: #c5c5c5;
}

.remarkstechName p {
    margin: 0;
    color: #c5c5c5;
}


.remarkstask input,
.remarkstask textarea,
.remarkstechName select {
    width: 100%;
    background: #212529;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    outline: none;
    color: #ffff;
}

textarea {
    width: 100%;
    background: #212529;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    outline: none;
    color: #ffff;
}

.min-w-2rem {
    min-width: 2rem;
}

.min-w-4rem {
    min-width: 4rem;
}

.min-w-12rem {
    min-width: 12rem;
}

.min-w-10rem {
    min-width: 10rem;
}

.min-w-2rem {
    min-width: 2rem;
}

.min-w-6rem {
    min-width: 6rem;
}

.min-w-8rem {
    min-width: 8rem;
}

.complainlisttable::-webkit-scrollbar {
    background-color: #ffffff;
    height: 10px;
}

.complainlisttable::-webkit-scrollbar-thumb {
    background-color: #026839;
    border-radius: 36px;
}

.complainlisttable::-webkit-scrollbar-track {
    background-color: #ffffff;
    border-radius: 9px;
}

tr.pending td:nth-child(1) {
    background-image: linear-gradient(90deg, #ffc107 25%, transparent 25%);
}

tr.in-progress td:nth-child(1) {
    background-image: linear-gradient(90deg, #0dcaf0 25%, transparent 25%);
}

tr.complete td:nth-child(1) {
    background-image: linear-gradient(90deg, #026839 25%, transparent 25%);

}

.complainlisttable tr td:nth-child(1) {

    padding-left: 25px;
}

.select2-dropdown {
    background-color: black;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-container--default .select2-selection--single {
    background-color: #000;
    border: 1px solid #000;
    border-radius: 4px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    background: #000;
    border: 1px solid #2a2929 !important;
    color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 28px;
}

.select2-container--default .select2-results__option--selected {
    background-color: #404040;
}

.modal-content {
    background-color: #141313;
}

.modal-header {
    border-bottom: var(--bs-modal-header-border-width) solid #42464a;
}

.modal-footer {
    border-top: var(--bs-modal-footer-border-width) solid #42464a;
}

.modal-header .btn-close {
    color: #fff;
    filter: invert(4);
}

a.complain-status-btns.active-status {
    background: #3a923c;
}

.wrapper-toolbar {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

a.complain-status-btns {
    padding: 5px 10px;
    background: black;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

.complainststusexamp {
    display: flex;
    gap: 20px;
}

p.complainststusexamp-pending span {
    background: #ffc107;
}

p.complainststusexamp-progress span {
    background: #0dcaf0;
}

p.complainststusexamp-completed span {
    background: #026839;
}
tr.in-progress a {
    color: #0dcaf0;
}
tr.pending a {
    color: #ffc107;
}


.complainststusexamp p {
    display: flex;
    gap: 5px;
    align-items: center;

}

.complainststusexamp span {
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 25px;
}

img.screenShotImg {
    height: 80px;
    width: 80px;
    object-fit: contain;
    background: black;
}