.cursor-pointer{
    cursor: pointer;
}

#loader {
    margin: auto;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

tr,
td,
th {
    vertical-align: middle !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #00c2cb;
}

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #aaaaaa;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #00a85b;
}

input:focus+.slider {
    box-shadow: 0 0 1px #00a85b;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.form-control {
    color: #414141 !important;
}

.drop-down {
    display: inline-block;
    position: relative;
}

.drop-down-items {
    position: absolute;
    background: #f2f2f2;
    width: 100%;
    text-align: left;
    border: 1px solid #ddd;
    border-radius: 5px;
    z-index: 1;
}


    /* <style> */
        .large-bold-text {
            font-size: 1.0em;
            font-weight: bold;
        }

        .modal-storage {
            max-width: 50%;
        }

        .modal-wide {
            max-width: 75%;
            /* Adjust this value as needed */
        }

        .modal-washer-remove {
            max-width: 55%;
            /* Adjust this value as needed */
        }

        .kanban-board {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            overflow-x: auto;
        }

        .kanban-column {
            flex: 1;
            margin: 0 15px;
            background-color: #f8f9fa;
            border-radius: 5px;
            padding: 25px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            height: 80vh;
            /* position: relative; */
        }

        .kanban-column .column-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .kanban-item {
            margin-bottom: 20px;
            border-radius: 10px;
            /* Rounded edges */
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
            /* Shadow */
            border: 2px solid #ccc;
            /* Border line */
        }

        .btn-disabled {
            cursor: not-allowed;
            opacity: 1;
            width: 100%;
            margin-bottom: 10px;
            position: sticky;
            top: 0;
            z-index: 1;
            /* font-size: 1.0em;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            font-weight: bold; */
        }

        .btn-waiting {
            background-color: #6c757d;
            color: white;
            font-size: 1.5em;
            font-weight: bold;
        }

        .btn-washing {
            background-color: #007bff;
            color: white;
            font-size: 1.5em;
            font-weight: bold;
        }

        .btn-drying {
            background-color: #ffc107;
            color: white;
            font-size: 1.5em;
            font-weight: bold;
        }

        .btn-folding {
            background-color: #17a2b8;
            color: white;
            font-size: 1.5em;
            font-weight: bold;
        }

        .btn-ready {
            background-color: #28a745;
            color: white;
            font-size: 1.5em;
            font-weight: bold;
        }

        .scrollable-content {
            height: calc(100vh - 80px);
            /* Adjust based on your needs */
            overflow-y: auto;
            padding-top: 10px;
        }
