﻿.btn-text-box-border {
    border: var(--bs-border-width) solid var(--bs-border-color-translucent);
}
 
.get-help {
    margin-top: 18px;
}
.download-table-button {

}

.icon-color-primary, .link-color-primary {
    color: #4992BB;
}

.point {
    cursor: pointer;
}
.margin-right-five{
    margin-right: 5px;
}

/* Get Help */
.get-help-container {
    padding: 20px;
}

.get-help-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom:20px;
}

.get-help-text {
    font-size: 12px;
    margin-top: 20px;
    color: #041D2B;
}

.clipboard-toast-success{
    background-color:red;
    color:blue;
}
.refresh-button{
    font-size: 18px;
}
.vertical-collpsed {
    min-height: 400px !important;
}
.support-title {
    font-size: 16px;
    color: #041D2B;
}

.recon-support-modal-content {
    width: 50%;
    margin: 0 auto;
}

.recon-back-btn {
    text-decoration: none;
    color: #4992BB;
    font-weight: 500;
    padding: 5px 12px;
    border: 1px solid #4992BB;
    border-radius: 7px;
    display: inline-block;
}

    .recon-back-btn:hover {
        border: 1px solid #4992BB;
        color: #4992BB;
    }

/*Tabs Layout*/
.tabs {
    display: flex;
    background-color: white;
    padding: 0px;
    max-width: 1000px; /* Adjust as needed */
    margin: 20px auto;
    border-radius: 10px; /* Overall container radius */
}
.tab {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s ease;
    border: 1px solid #ccc; /* Adjust as needed */
    box-sizing: border-box;
}
    .tab:not(:first-child) {
        border-left: none; /* This ensures the tabs are connected */
    }

    .tab:not(.active) {
        background-color: transparent;
        color: #555;
    }

    .tab.active {
        background-color: #B9D5E5;
        color: black;
        font-weight: bold;
        border-radius: 0; /* Resets the radius for the active tab */
    }

    /* Rounded corners for first and last tab specifically */
    .tab:first-child {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .tab:last-child {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }
.date-tabs {
    margin-bottom: 40px !important;
}

/* Footer Table */
.drop-pagination-btn, .drop-pagination-btn-news {
    background-color: #fff;
    color: #2c3e50;
    padding: 2px 10px;
    font-size: 13px;
    border: var(--bs-border-width) solid var(--bs-border-color-translucent);
    cursor: pointer;
    border-radius: 16px;
    width: 60px;
    outline: none;
    position: relative;
    display: flex; /* Use flexbox for alignment */
    justify-content: space-between; /* Space the text and arrow */
    align-items: center; /* Center items vertically */
    font-weight: bold;
}

.arrow {
    font-size: 20px;
    font-weight: bold;
}

    .arrow.up {
        transform: rotate(180deg);
    }
.table th:nth-child(2),
.table td:nth-child(2) {
    min-width: 50px;
}
/*remove default paginate controls*/
.dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_info {
    display: none;
}
/*Container footer*/
.datatable-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: white;
    border-top: 1px solid #ddd;
}



/*Dropdown number of rows*/
.dropdown-pagination-container {
    display: flex;
    align-items: center;
}

.dropdown-pagination {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    overflow: visible !important;
}


.dropdown-pagination {
    position: relative;
    
}

.drop-pagination-btn, .drop-pagination-btn-news {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    border-color: #EFF2F7;
    font-size: 14px;
    width: 70px;
}

.pagination-content {
    position: absolute;
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    width: auto;
    bottom: 100%;
}

    .pagination-content a {
        color: #2c3e50;
        padding: 5px 5px;
        width: 45px;
        text-decoration: none;
        display: block;
        border-bottom: 1px solid #ecf0f1;
    }

        .pagination-content a:last-child {
            border-bottom: none;
        }

        .pagination-content a:hover {
            background-color: #ecf0f1;
        }


    .pagination-content.show {
        display: block;
    }

.dropdown-item {
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

    .dropdown-item:hover {
        background-color: #f0f0f0;
    }

.arrow {
    transition: transform 0.3s;
    margin-left: 5px;
}

    .arrow.up {
        transform: rotate(180deg);
    }


.pagination-rows {
    margin-right: 20px;
}

.show {
    display: block;
}

/*Pagination Controls*/
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pagination li {
        margin: 0 0px;
    }

    .pagination a,
    .pagination span {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        background-color: white;
        border-radius: 0px;
        border-color: #EFF2F7;
        color: #475762;
        width: 32px;
        height: 32px;
    }

        .pagination a:hover,
        .pagination span:hover {
            background-color: #ddd;
            color: #4992BB;
        }

    .pagination .active a,
    .pagination .active span {
        background-color: #4992BB;
        color: #fff;
    }

    .pagination li:first-child a,
    .pagination li:first-child span,
    .pagination li:last-child a,
    .pagination li:last-child span {
        font-size: 14px;
        background-color: white;
        width: 70px;
        border-radius:3px 3px;
    }
.pag-item {
    margin: 0 5px;
    border-radius: 5px;
}

.pag-link {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
}

.pag-item.active .pag-link {
    background-color: #4992BB;
    color: white;
}

.pag-item.disabled .pag-link {
    color: #ccc;
    cursor: default;
}

.pag-item.arrow a {
    background-color: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
}
/* Footer Table End*/

.primary-color {
    background-color: #4992BB !important;
    border-color: #4992BB !important;
}
.primary-outline-text-color {
    border-color: #4992BB !important;
    color: #4992BB !important;
}
.primary-outline-color {
    border-color: #4992BB !important;
    color: #4992BB !important;
}

.primary-outline-color:hover {
    background-color: #4992BB !important;
    color: #fff !important;
}

.font-size-14{
    font-size:14px !important;

}
.font-size-13 {
    font-size: 13px !important;
}

.btn-sm {
    padding: 2px 8px;
    font-size: 12px;
}

.dataTables_wrapper .btn {
    margin: 0; /* Remove unnecessary margins */
    line-height: 1; /* Reduce button height */
}

.disabled {
    pointer-events: none; /* Prevents clicks */
    opacity: 0.5;
    cursor: not-allowed;
}

/* Remove hover effect on disabled buttons */
.disabled:hover {
    background-color: inherit !important; /* Prevents background change */
    color: inherit !important; /* Keeps the default text color */
    border: none !important; /* Prevents border styling */
}

/* apply effect of bold on the highlight text*/
.highlight {
    font-weight: bold;
}
}
}

input[switch=cytidel-default] + label {
    background-color: #448ccd;
}

input[switch=cytidel-default]:checked + label {
    background-color: #448ccd;
}