﻿.star-rating {
    display: inline-flex;
    unicode-bidi: bidi-override;
    direction: rtl;
    color: lightgray;
}

    .star-rating input[type="radio"] {
        display: none;
    }

    .star-rating label {
        font-size: 2em;
        cursor: pointer;
        padding: 0 0.1em;
    }

        .star-rating label:before {
            content: '\2605'; /* Unicode star */
        }

    .star-rating input:checked ~ label {
        color: gold;
    }

        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label:hover,
        .star-rating input:checked ~ label:hover ~ label {
            color: gold;
        }

.horizontal-scroll-container {
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap;
}

.board {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    display: inline-block;
}
.task-container {
    height: 500px; /* Adjust the height as needed */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 10px;
    box-sizing: border-box; /* Include padding in the height calculation */
}
.column {
    /* width: 30%; */
    width: 30%;
    /*width: calc(50% - 50px);*/
    max-width: 400px;
    margin: 5px;
    background-color: transparent;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: inline-table;
    border: 1px solid #ddd; /* Border for each item */
    z-index:99999;
    height: 100%; /* Fill the container height */
}

    .column h2 {
        font-size: 16px;
        margin-bottom: 10px;
        color: #333;
    }




.task-input {
    width: 60%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.task {
    white-space: normal;
    font-size: 14px;
    background-color: #2c7be5;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: grab;
    flex-wrap: wrap;
}

.delete-btn {
    float: right;
    cursor: pointer;
}

.add-task-btn {
    background-color: #4caf50;
    border: none;
    color: white;
    /* Adjust padding to make
            the button smaller */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    /* Decrease font size */
    border-radius: 5px;
    /* Adjust border radius
            for a softer look */
    cursor: pointer;
    transition: background-color 0.3s;
}


    .add-task-btn:hover {
        background-color: #45a049;
    }


/*#todo .task {
    background-color: #b3e5fc;*/
    /* Light blue */
/*}*/

#in-progress .task {
    background-color: #ffcdd2;
    /* Light pink */
}

#done .task {
    background-color: #c8e6c9;
    /* Light green */
}

.task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 5px;
    cursor: grab;
    scrollbar-width:thin
}

.delete-btn {
    float: right;
    cursor: pointer;
}

.tasks-in-btn {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3px;
}







.form-control-opt {
    display: block;
    width: 100%;
    padding: 0.3125rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--falcon-gray-900);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--falcon-quaternary-bg);
    background-clip: padding-box;
    border: var(--falcon-border-width) solid var(--falcon-gray-300);
    border-radius: var(--falcon-border-radius);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control-opt {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control-opt[type=file] {
    overflow: hidden;
}

    .form-control-opt[type=file]:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

.form-control-opt:focus {
    color: var(--falcon-gray-900);
    background-color: var(--falcon-quaternary-bg);
    border-color: var(--falcon-input-focus-border-color-global);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(44, 123, 229, 0.25);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(44, 123, 229, 0.25);
}

.form-control-opt::-webkit-date-and-time-value {
    min-width: 85px;
    height: 1.5em;
    margin: 0;
}

.form-control-opt::-webkit-datetime-edit {
    display: block;
    padding: 0;
}

.form-control-opt::-webkit-input-placeholder {
    color: var(--falcon-input-placeholder-color-global);
    opacity: 1;
}

.form-control-opt::-moz-placeholder {
    color: var(--falcon-input-placeholder-color-global);
    opacity: 1;
}

.form-control-opt:-ms-input-placeholder {
    color: var(--falcon-input-placeholder-color-global);
    opacity: 1;
}

.form-control-opt::-ms-input-placeholder {
    color: var(--falcon-input-placeholder-color-global);
    opacity: 1;
}

.form-control-opt::placeholder {
    color: var(--falcon-input-placeholder-color-global);
    opacity: 1;
}

.form-control-opt:disabled {
    background-color: var(--falcon-gray-200);
    opacity: 1;
}

.form-control-opt::file-selector-button {
    padding: 0.3125rem 1rem;
    margin: -0.3125rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem;
    color: #d8e2ef;
    background-color: #344050;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: var(--falcon-border-width);
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control-opt::file-selector-button {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control-opt:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #344050;
}

.form-control-opt-plaintext {
    display: block;
    width: 100%;
    padding: 0.3125rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #5e6e82;
    background-color: transparent;
    border: solid transparent;
    border-width: var(--falcon-border-width) 0;
}

    .form-control-opt-plaintext:focus {
        outline: 0;
    }

    .form-control-opt-plaintext.form-control-opt-sm, .form-control-opt-plaintext.form-control-opt-lg {
        padding-right: 0;
        padding-left: 0;
    }

.form-control-opt-sm {
    min-height: calc(1.5em + 0.375rem + calc(var(--falcon-border-width) * 2));
    padding: 0.1875rem 0.75rem;
    font-size: 0.875rem;
    border-radius: var(--falcon-border-radius-sm);
}

    .form-control-opt-sm::file-selector-button {
        padding: 0.1875rem 0.75rem;
        margin: -0.1875rem -0.75rem;
        -webkit-margin-end: 0.75rem;
        margin-inline-end: 0.75rem;
    }

.form-control-opt-lg {
    min-height: calc(1.5em + 0.75rem + calc(var(--falcon-border-width) * 2));
    padding: 0.375rem 1.25rem;
    font-size: 1.2rem;
    border-radius: var(--falcon-border-radius-lg);
}

    .form-control-opt-lg::file-selector-button {
        padding: 0.375rem 1.25rem;
        margin: -0.375rem -1.25rem;
        -webkit-margin-end: 1.25rem;
        margin-inline-end: 1.25rem;
    }

textarea.form-control-opt {
    min-height: calc(1.5em + 0.625rem + calc(var(--falcon-border-width) * 2));
}

textarea.form-control-opt-sm {
    min-height: calc(1.5em + 0.375rem + calc(var(--falcon-border-width) * 2));
}

textarea.form-control-opt-lg {
    min-height: calc(1.5em + 0.75rem + calc(var(--falcon-border-width) * 2));
}

.form-control-opt-color {
    width: 3rem;
    height: calc(1.5em + 0.625rem + calc(var(--falcon-border-width) * 2));
    padding: 0.3125rem;
}

    .form-control-opt-color:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

    .form-control-opt-color::-moz-color-swatch {
        border: 0 !important;
        border-radius: var(--falcon-border-radius);
    }

    .form-control-opt-color::-webkit-color-swatch {
        border: 0 !important;
        border-radius: var(--falcon-border-radius);
    }

    .form-control-opt-color.form-control-opt-sm {
        height: calc(1.5em + 0.375rem + calc(var(--falcon-border-width) * 2));
    }

    .form-control-opt-color.form-control-opt-lg {
        height: calc(1.5em + 0.75rem + calc(var(--falcon-border-width) * 2));
    }
th.sort.asc::after {
    content: "▲"; /* Up arrow for ascending sort */
    margin-left: 5px;
}

th.sort.desc::after {
    content: "▼"; /* Down arrow for descending sort */
    margin-left: 5px;
}

th.sort {
    cursor: pointer;
}

/*new*/
.fullscreen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #0f75bd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.pagination .page {
    background-color: #fff;
    padding:5px;width:35px;height:35px; border: 1px solid gray;
    margin:3px;border-radius:5px
}
.active .page {
    background-color: gray
}
:dir(rtl) #pageSizeSelector {
    text-align: right !important
}

:dir(rtl) #prevButton {
    transform: rotate(180deg);
}


:dir(rtl) #nextButton {
    transform: rotate(180deg);
}

:dir(rtl) body {
    font-size:.85rem !important
}

:dir(rtl) .demo-pli-arrow-left:before {
    transform: scaleX(-1);
}

:dir(rtl) .demo-pli-arrow-right:before {
    transform: scaleX(-1);
}
:dir(rtl) .hd--expanded.mn--max .content__header:before,
:dir(rtl) .hd--expanded.mn--min .content__header:before {
    content: "";
    display: block;
    height: 1.09375rem;
    margin-left: 0;
    -webkit-mask-image: radial-gradient(circle at 100% 1.09375rem, transparent 0, transparent 1.09375rem, black 1.09375rem);
    mask-image: radial-gradient(circle 1.09375rem at 100% 1.09375rem, transparent 0, transparent 1.09375rem, black 1.09375rem);
    position: relative;
    top: -0.06125rem;
    transform: translateX(-1.09375rem);
    width: 1.155rem;
    z-index: 10;
}

