@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
.store-filter,
.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--multiple {
        min-height: 38px;
        padding: 4px 6px;
        display: flex;
        align-items: center;
    }


@media (max-width: 768px) {
    .select2-container {
        width: 100% !important;
    }

    .select2-selection--multiple {
        min-height: 40px;
        overflow-x: auto;
    }
}


.grid-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.message-tooltip {
    display: inline-block;
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

body {
    font-family: "Poppins", sans-serif;
}

.title-wrap h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.card {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    border: 0;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group .form-label, .btn {
        font-weight: 600;
        font-size: 14px;
    }

select option {
    padding: 3px 10px;
}

    select option::checkmark {
        margin-top: -8px;
    }

    select option:checked {
        background: #e6f0ff;
        color: #0d6efd;
    }

    select option:hover {
        color: #fff;
        background-color: #0d6efd;
    }
/*interface page css start here*/
.page-space {
    margin: 20px 0;
}

.tabs {
    display: flex;
    overflow: auto;
    margin-bottom: 15px;
}

.tab {
    padding: 8px 20px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    background: rgba(13, 110, 253, 10%);
    color: #0d6efd;
    text-align: center;
    flex: 1;
    font-weight: 600;
    font-size: 14px;
}

    .tab:first-child {
        border-radius: 4px 0 0 4px;
    }

    .tab:last-child {
        border-radius: 0 4px 4px 0;
    }

    .tab.active {
        background: #0d6efd;
        color: #ffffff;
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.filter-bar {
    margin: 20px 2%;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: end;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.filter-item {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

    .filter-item label {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 4px;
    }

.filter-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.multiselect-container {
    width: 100%;
}

.multiselect.dropdown-toggle {
    text-align: left;
    background-color: #fff;
}

.multiselect-selected-text {
    color: #000;
}

/*interface page css start here*/

/*table css start here*/
table {
    border: 0;
    margin: 0 !important;
}

    table tr {
        border: 0;
    }

        table tr:nth-child(odd) td {
            background: #f1f1f1;
        }

        table tr:nth-child(even) td {
            background: #e3e3e3;
        }

    table th, table td {
        padding: 8px 12px !important;
        font-size: 14px;
        text-align: center;
        vertical-align: middle;
        border: 0;
        box-shadow: none !important;
    }

    table th {
        background: #e6f0ff !important;
        position: sticky;
        top: 0;
    }

    table thead tr:first-child th:first-child {
        border-radius: 4px 0 0 0;
    }

    table thead tr:first-child th:last-child {
        border-radius: 0 4px 0 0;
    }

    table tbody tr:last-child td:first-child {
        border-radius: 0 0 0 4px;
    }

    table tbody tr:last-child td:last-child {
        border-radius: 0 0 4px 0;
    }

    table td .form-control {
        font-size: 14px;
    }

    table td.col-body {
        min-width: 300px;
    }

    table td.col-name {
        min-width: 140px;
    }

    table td.col-Cycle input {
        min-width: 60px;
    }

    table td.col-channel input {
        min-width: 130px;
    }

    table td.body-col textarea {
        min-width: 130px;
    }

    table td.col-SafeLimits input {
        min-width: 80px;
    }

    table td.status-col select {
        min-width: 140px;
    }

    table td.col-date {
        min-width: 180px;
    }

.table-responsive {
    max-height: 550px;
    overflow: auto;
}

table input {
    text-align: center;
}
/*table css end here*/

/*login page css start here*/
.login-page.page-space {
    min-height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.login-title {
    margin-bottom: 10px;
}

.register-text {
    font-size: 14px;
}
/*login page css end here*/

.popover-body {
    max-height: 500px;
    overflow: auto;
}
/*media query start here*/
@media(min-width: 1200px) {
    .title-wrap h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .form-group .form-label, .btn, .tab {
        font-size: 16px;
    }
}
/*media query end here*/
