
#selectAll {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.blink {
    animation: blink-animation 0.6s steps(2, start) infinite;
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes color-flash {
    0% {
        color: white;
    }

    50% {
        color: gold;
    }

    100% {
        color: white;
    }
}

.color-blink {
    animation: color-flash 1.5s ease-in-out;
}

.blink-on-load {
    animation: blink 1s ease-in-out 3;
}

html {
    font-size: 14px;
}
.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1510 !important;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
    for details on configuring this project to bundle and minify static web assets. */


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    opacity: 0.2;
}

::-moz-placeholder { /* Firefox 19+ */
    opacity: 0.2;
}

:-ms-input-placeholder { /* IE 10+ */
    opacity: 0.2;
}

:-moz-placeholder { /* Firefox 18- */
    opacity: 0.2;
}

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1510 !important;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

    .ui-autocomplete > li > div {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.42857143;
        color: #333333;
        white-space: nowrap;
    }

.ui-state-hover,
.ui-state-active,
.ui-state-focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
    cursor: pointer;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.each {
    border-bottom: 1px solid #555;
    padding: 1px 0;
}

::placeholder {
    opacity: 0.2; /* Modern Browsers only */
}



.kanban-column {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    min-height: 300px;
}

.kanban-header {
    background: #007bff;
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.kanban-items {
    background: #ffffff;
    padding: 10px;
    min-height: 200px;
    border: 1px dashed #ced4da;
    border-radius: 5px;
}

.kanban-item {
    background: #e9ecef;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 3px;
    cursor: move;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

    .kanban-item:hover {
        transform: scale(1.02);
    }

.drop-hover {
    background: #d4edda !important;
}

.dragging {
    opacity: 0.5;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Reduce AdminLTE Navbar Padding */
.navbar {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
    
}

/* Ensure Consistency */
.navbar-nav {
    align-items: center;
}

/* Reduce Dropdown Padding */
.nav-item .nav-link {
    padding: 0.4rem 0.8rem !important;
}