﻿#refreshWarningFrozen, #refreshWarningManned {
    display: none;
}

.circleBigger {
    display: none;
}

.JobDataSpinner {
    width: 25px;
    filter: hue-rotate(-25deg);
}

.job-count-header {
    text-align: center;
}
.job-count-cell {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.funnel-icon {
    color: #a2a2a2;
    font-size: 13px;
}
.dashboard-status-icon {
    display: inline-flex;
    align-items: center; 
    gap: 6px;
    background-color: #f9f9f9;
    padding: 6px 15px;
    border-radius: 50px;
    border: 2px solid #e4e4e4;
}
.core-stage-container {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 15px;
    border: 2px solid #e4e4e4;
}
.btnChangeColor, .switch {
    display: none;
}
#btn-choose-columns {
    float: right;
    padding: 10px 10px;
    border-radius: 5px;
    background-color: #f5f5f5;
    border: 1px solid #c3c3c3;
    cursor: pointer;
    margin-right: 20px;
}
#btnAddJob {
    float: left;
    margin-left: 10px;
}
#txtSearchJobs {
    width: 60%;
    margin-top: 6px;
}
#addPosition {
    display: none;
    position: absolute;
    top: 88px;
    left: 200px;
    height: 300px;
    width: 450px;
    background-color: white;
    border: solid 1px #E0DEDE;
    box-shadow: 0px 8px 5px lightgray;
    padding: 10px;
    z-index: 9999;
}
#JobsNavigatorLinks {
    border-bottom: 1px solid #e4e4e4;
    padding-top: 15px;
    text-align: center;
}
#btnDeleteAllConfirm {
    display: none;
}
#btnSaveColumns {
    margin-top: 30px;
}
.btnColor {
    background-image: url(/Images/Buttons/btnColor.png?ver=6);
}
.btnColor:hover {
    background-image: url(/Images/Buttons/btnColor_h.png?ver=6);
}
.divJobRemoved {
    text-align: center;
}

/* Active Jobs Table and container */
#activeJobs {
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow-x: auto;
    overflow-y: auto;
    height: 62vh;
}
#tblActiveJobs {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    margin: auto;
}
#tblActiveJobs td, #tblActiveJobs th {
    padding: 5px 14px;
}
#tblActiveJobs th {
    color: #888888;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}
.btnSort {
    cursor: pointer;
}
.btnSort:hover {
    color: #00A19A !important;
}
.job-category-box {
    background-color: #f0f0f0;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 4px 10px;
    margin: 2px;
    font-size: 12px;
    color: #555555;
}
/* AI job creation */
#divCreateWithAI {
    display: none;
}
#iframeCreateWithAI {
    width: 100%;
    max-width: 750px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    flex-direction: column;
    height: 60vh;
    min-height: 600px;
    position: relative;
    margin-top: 20px;
}


/* Choose columns */
#divChoseColumns1 {
    width:49%;
    float:left;
    padding:20px 0px;
    min-height: 200px;
}
#divChoseColumns0 {
    width:49%;
    float:right;
    border-left:1px dashed #A3A2A2;
    padding:20px 0px;
    min-height: 200px;
}
.selectedColumn {
    display:inline-block;
    padding:7px 16px;
    background-color: #01bdb4;
    color:white;
    border: 1px solid #00A19A;
    border-radius:50px;
    margin:6px 12px;
    cursor:pointer;
    font-size: 16px;
}
.unSelectedColumn {
    display:inline-block;
    padding:7px 16px;
    background-color: #dfdfdf;   
    border: 1px dashed #A3A2A2;
    border-radius:50px;
    margin:6px 12px;
    cursor:pointer;
    font-size: 16px;
}