/* Font Size Class start */
.regular-font-class {
    font-size: var(--regular-font);
    line-height: var(--regular-line-height);

    color: var(--text-secondary-black-color) !important;
}

.medium-font-class {
    font-size: var(--medium-font) !important;
    line-height: var(--medium-line-height) !important;

    color: var(--text-black) !important;
}

.heading-font-class {
    font-size: var(--heading-font);
    
    color: var(--text-black) !important;
}

button {
    font-size: var(--regular-font);
}

/* Font Size Class end */

/* common color css starts */
.green {
    color: #238b45 !important;
    background-color:  #ccece6 !important;
    border-radius: 4px;
    padding:4px;
}
.blue {
    color:#2171b5 !important;
    background-color:  #deebf7 !important;
    border-radius: 4px;
    padding:4px;
}
.orange {
    color: #fd8d3c !important;
    background-color:  #feedde !important;
    border-radius: 4px;
    padding:4px;
}
.red {
    color: red !important;
    background-color:  #fee0d2 !important;
    border-radius: 4px;
    padding:4px;
}
/* common color css ends */


/* dashboard css starts here */
.dashboard-widgets {
    display: flex;
    padding: 1vh;
}

.dashboard-widgets .app-widget {
    display: flex;
    margin: .5vh;
    justify-content: center;
    align-items: center;
    width: 15vw;
    padding: 1.7vw 1.2vw;
    height: 4.5vh;
}

.widget-title {
    width: 80%;
    font-size: var(--medium-font);
}

.widget-count {
    width: 25%;
    font-size: 5vh;
    text-align: center;
}



.top-listed-jobs .heading {
    font-size: var(--medium-fonts);
    font-weight: 600;
    line-height: var(--medium-line-height);
    color: var(--text-black);
}

.top-listed-jobs .vertical-line {
    border: .1vw solid var(--bg-dark-grey);
    margin: .6vw 0vw;
}

.top-listed-jobs .job-title {
    font-size: var(--regular-font);
    line-height: var(--tab-line-height);

    padding: 0vh .8vh;
}

.top-listed-jobs .no-of-applications {
    font-size: var(--regular-font);
    line-height: var(--regular-line-height);
    padding: 0vh .8vh;
    color: var(--text-grey);
}

.view-all-redirection a {
    color: var(--bg-blue);
    font-size: var(--regular-font);
}

.candidate-lifecycle-analysis {
    width: 50%;
    height: 45%;
    margin-right: 2vw;
}



@media screen and (min-width:300px){
    
    
    
    .dashboard-container-2 {
        
        flex-direction: column;
        width: 100%;

        margin-bottom:20px;

    }

    .widget-tile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    
        width: 45%;
        flex-wrap: wrap;
        height: 10vh;
    
        padding: 0 1vw;

        margin: 1vw;
    
        background-color: var(--bg-white);
        border-radius: 9px;
    
        color: var(--text-grey);
    }

    .widget-tiles {
        display: flex;
        
        flex-wrap: wrap;

        margin-top: 1vw;
    }

    .analysis-section {
        margin: 1vw;
    }
    
    .candidate-lifecycle-analysis {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0vw 0vw;

        height: 371px;
        width: 100%;
    }
    
    .candidate-lifecycle-analysis canvas {
        margin: 1vw;
        height: 330px !important;
        width: 330px !important;
    
    }
    
    .candidate-lifecycle-analysis .chart-header {
        font-size: var(--medium-fonts);
        margin: 2vh;
        font-weight: 600;
    }

    .candidate-lifecycle-analysis-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    
        height: 371px;
        width: 100%;
        margin-top:1vh;
    }

    .candidate-lifecycle-analysis-logo img {
        margin: 1vh;
        width: 180px;
        height: 80px;
    }

    .top-listed-jobs {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    
        height: 350px;
    
        margin: 1vw;
        margin-top:2vw;

        padding: 2vh; 
        padding-bottom: 3.5vh;
    }
}

@media screen and (min-width:900px){

    .main-container {
        display: flex !important;
    }

    .dashboard-container {
        display: flex;
        flex-direction: column;
        padding: 1vw;
        padding-right:0;
        /* padding-left: .6vw; */
        width: 75%;
    }
    
    
    .dashboard-container-2 {
        width: 25%;
        padding:1vw;
        margin-top:1vw;
    }

    .widget-tile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    
        width: 15%;
        height: 40px;

        flex-wrap: nowrap;
        margin:0;
    
        padding: 0 1vw;
    
        background-color: var(--bg-white);
        border-radius: 9px;
    
        color: var(--text-grey);
    }
    
    .widget-tiles {
        display: flex;
        justify-content: space-between;
        margin-top: 1vw;
    }

    .analysis-section {
        display: flex;
        margin: 0;
        margin-top: 2vh;
    }
    
    .candidate-lifecycle-analysis {
        display: flex;
        flex-direction: column;
        align-items: center;
        
        margin: 0vw;
        height: 371px;
        width: 50%;
    }
    
    .candidate-lifecycle-analysis canvas {
        margin: 0;
        width: 93% !important; 
        height: auto !important;
        
        max-height: 350px !important;
        max-width: 350px !important;

    }
    
    .candidate-lifecycle-analysis .chart-header {
        font-size: var(--medium-fonts);
        margin: 2vh;
        font-weight: 600;
    }

    .candidate-lifecycle-analysis-logo {
        display: flex;
        justify-content: center;
        align-items: center;

        height: 371px;
        width: 50%;
        
        margin-left: 1vw;
        margin-top: 0;
    }

    .candidate-lifecycle-analysis-logo img {
        margin: 1vh;
        width: 50%;
        height: 56%;
    }

    .top-listed-jobs {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    
        height: 400px;

        margin:0;
    
        padding: 2.3vh 3vh;
    }
}

@media screen and (min-width:1300px) {
    .candidate-lifecycle-analysis-logo {
        height: 450px;
    }

    .candidate-lifecycle-analysis {
        height: 450px;
    }

    .top-listed-jobs {
        height: 469px;
    }
}

@media screen and (min-width:1450px) {
    .candidate-lifecycle-analysis-logo {
        height: 480px;
    }

    .candidate-lifecycle-analysis {
        height: 480px;
    }

    .top-listed-jobs {
        height: 499px;
    }

    .candidate-lifecycle-analysis canvas {
        margin: 1vw;
        height: 420px !important;
        width: 420px !important;

        max-height: 450px !important;
        max-width: 450px !important;
    
    }
}

@media screen and (min-width:1650px) {
    .candidate-lifecycle-analysis-logo {
        height: 550px;
    }

    .candidate-lifecycle-analysis {
        height: 550px;
    }

    .top-listed-jobs {
        height: 569px;
    }

    .candidate-lifecycle-analysis canvas {
        margin: 1vw;
        height: 470px !important;
        width: 470px !important;

        max-height: 500px !important;
        max-width: 500px !important;
    
    }
}

.widget-tile-text {
    font-size: var(--regular-font);
}

.widget-tile-number {
    font-size: var(--larger-number-font);
}

/* dashboard css ends here */

/* candidate list css starts here */


@media screen and (min-width:300px) {
    .candidate-list-container {
        width: 96%;
        padding: 1vh;
    }
}

@media screen and (min-width:1200px) {
    .candidate-list-container {
        width: 97.6%;
        padding: 2vh;
    }
}

.candidate-items-list {
    width: 20vw;
    height: 80vh;


    display: flex;
    flex-direction: column;
}


.candidate-items-list>.items ul {
    list-style-type: none;
    padding: 0;

    height: 75vh;
    overflow-y: auto;
}

.candidate-items-list>.items ul li {
    padding: 1vh 2vw;

    font-size: var(--regular-font);

    color: var(--text-grey);

    cursor: pointer;
}

.candidate-items-list>.items ul li:hover {
    background-color: var(--light-blue);
}

.candidate-items-list>p {
    text-align: left;

    font-size: var(--regular-font);
    font-weight: bold;
    color: var(--text-grey);
    padding: 0vw 2vw;
}

.fitindex-tag {
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.fitindex-tag img {
    width: 16px;
    height: 16px;

    margin-right: 5px;
}

.fitindex-tag button {
    background-color: transparent;
    border: none;
    cursor: pointer;

    margin-left: 3px;

    transition: transform 0.2s;
}

.fitindex-tag button:hover {
    transform: scale(1.4);
}

.ai-tag {
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.candidate-details-tabs {
    display: flex;
    flex-direction: column;

    width: 98%;

    padding: 0 1vw 1vw .65%;

    height: auto;

    max-height: 67vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.candidate-details-tabs p {
    font-weight: bold;
    color: var(--text-grey);
}

.redirect-back-card {
    display: flex;
    flex-direction: row;
    font-size: var(--regular-font);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    padding: .3vw;
    color: var(--bg-blue);
    border-radius: 4px;
}

.redirect-back-card img {
    height: 0.8vw;
    width: 0.8vw;

    margin-right: .3vw;

    transform: rotate(90deg);
}

.candidate-tiles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
}

@media screen and (min-width:300px) {
    .candidate-tile {
        display: flex;
        flex-direction: column;
    
        margin-top: 1.5vw;
        margin-left: 1.5%;
    
        width: 45%;
        height: 70px;
    
        padding: 1vw 1.3vw 0vw 1.3vw;
    
        background: linear-gradient(to bottom, #F0F0F0 70%, #DCDCDC 10%);
        border-radius: 9px;
    
        color: var(--text-secondary-black-color);
        font-size: .67rem;
        line-height: var(--regular-line-height);
    }
}

@media screen and (min-width:600px) {
    .candidate-tile {
        display: flex;
        flex-direction: column;
    
        margin-top: 1.5vw;
        margin-left: 1.5%;
    
        width: 28%;
        height: 80px;
    
        padding: 1vw 1.3vw 0vw 1.3vw;
    
        background: linear-gradient(to bottom, #F0F0F0 70%, #DCDCDC 10%);
        border-radius: 9px;
    
        color: var(--text-secondary-black-color);
        font-size: var(--regular-font);
        line-height: var(--regular-line-height);
    }
}

@media screen and (min-width:900px) {
    .candidate-tile {
        display: flex;
        flex-direction: column;
    
        margin-top: 1.5vw;
        margin-left: 1.5%;
    
        width: 33%;
        height: 80px;
    
        padding: 1vw 1.3vw 0vw 1.3vw;
    
        background: linear-gradient(to bottom, #F0F0F0 70%, #DCDCDC 10%);
        border-radius: 9px;
    
        color: var(--text-secondary-black-color);
        font-size: var(--regular-font);
        line-height: var(--regular-line-height);
    }
}

@media screen and (min-width:1200px) {
    .candidate-tile {
        display: flex;
        flex-direction: column;
    
        margin-top: 1.5vw;
        margin-left: 1.5%;
    
        width: 20%;
        height: 80px;
    
        padding: 1vw 1.3vw 0vw 1.3vw;
    
        background: linear-gradient(to bottom, #F0F0F0 70%, #DCDCDC 10%);
        border-radius: 9px;
    
        color: var(--text-secondary-black-color);
        font-size: var(--regular-font);
        line-height: var(--regular-line-height);
    }
}

.candidate-information {
    height: 75%;
    
}

.candidate-tile-footer {
    height: 25%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-media-links img {
    margin-right: .5vw;
    padding: .2vw;

    height: 2vh;
    border-radius: 4vh;

    background-color: var(--bg-blue);

    transition: transform 0.2s;
}

.social-media-links img:hover {
    transform: scale(1.2);
}

.candidate-view-detail a {
    color: var(--bg-blue);
}



/* Candidate Search Bar */
.interviewer-search-bar, 
.candidate-search-bar {
    width: 100%;
    padding: 1vh 0;
    margin-top: 1vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-cell {
    width: 230px;
    padding: 2px 5px;
}

@media screen and (max-width: 800px) {
    .top-bar-cell-container {
        flex-wrap: wrap
    }

    .email-log-filter-container {
        flex-wrap: wrap;
    }
}

@media screen and (min-width:801px) {
    .email-log-filter-container {
        flex-wrap: nowrap !important;
    }
}

.top-bar-cell .cell-title {
    font-size: var(--regular-font);
    color: var(--dark-blue);

    margin-bottom: 1vw;
}

.input-container {
    position: relative;
    width: 50%;
    /* Matches the width of the input field */
    transition: transform 0.2s;
    /* Apply transform to the container */
}

.input-container .search_icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    /* Adjust size as needed */
    height: 20px;
    pointer-events: none;
    /* Prevent click events on the icon */
}

.input-container input {
    width: 100%;
    padding: 1.5vh 2vh 1.5vh 40px;
    /* Add left padding to make space for the icon */
    font-size: var(--regular-font);
    border-radius: 5px;
    border: 1px solid var(--bg-dark-grey);
    transition: transform 0.2s;
}

.input-container select {
    width: 100%;
    padding: 1vh;
    /* Add left padding to make space for the icon */
    font-size: var(--regular-font);
    border-radius: 5px;
    border: 1px solid var(--bg-dark-grey);
    transition: transform 0.2s;
}

.input-container input:focus, .input-container select:focus {
    outline: none;
    border: 1px solid var(--bg-blue);
}

.input-container:focus-within {
    /* Scale the container along with the input */
    transform: scale(1.1);
}

.no-scale:focus-within {
    transform: none !important;
}

/* candidate list css ends here */

/* Candidate Questioning CSS start */
/* candidate css starts here */

.disable-stat-tile {
    background-color: #ccc;
    color: #555555;
    cursor: not-allowed;
}

@media screen and (min-width:300px) {
    .candidate-job-details-content {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 1vw;
        margin: .2vh;
        margin-top: 1vw;
        min-width: 95%;
    }
    #filterDropdown {
        padding:1vh 2vh;
        margin:5px;
    }
}
@media screen and (min-width:900px) {
    .candidate-job-details-content {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin: .2vh;
        margin-top: 0;
    }

    #filterDropdown {
        padding: 1vh;
    }
}

@media screen and (min-width:300px) {
    .user-chatbox {
        margin-top:2vw;
        display: flex;
        flex-direction: column;
        height: 50vh;
        width: 100%;
        margin-bottom: 18px;
    }
}

@media screen and (min-width:900px) {
    .user-chatbox {
        margin-top:0vw;
        display: flex;
        flex-direction: column;
        height: 82vh;
        width: 30%;
    }
}

@media screen and (min-width:300px) {
    .candidate-profile-details-tabs {
        display: flex;
        flex-direction: column;
    
        width: 98%;
        height: auto;
    
        padding: 1vw;
        
    }
}

@media screen and (min-width:900px) {
    .candidate-profile-details-tabs {
        display: flex;
        flex-direction: column;
    
        width: 66%;
        height: 77.5vh;
    
        padding: 1vw;
    }
}

@media screen and (min-width:300px) {
    .candidate-description {
        width: 60%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .candidate-profile {
        width: 43%;
        display: flex;
        align-items: start;
    }
    .candidate-summary {
        display: flex;
        height: 100px;
    }
}

@media screen and (min-width:500px) {

    .candidate-profile {
        width: 25%;
        display: flex;
        align-items: start;
    }
    
}

@media screen and (min-width:900px) {
    .candidate-description {
        width: 73%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .candidate-profile {
        width: 33%;
        display: flex;
        align-items: start;
    }
    .candidate-summary {
        display: flex;
        height: 120px;
        padding-bottom:1vw;
    }
}



.candidate-description p {

    font-size: var(--medium-font);;
    color: var(--text-grey);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right:10px;
}
.step-links a {
    margin: 0 5px;
    text-decoration: none;
}
.step-links .current {
    margin: 0 5px;
}
#items_per_page {
    margin: 5px 0;
    display: block;
    padding:3px 5px;
}

.previous-page-icon {
    height: 4vh;
    width: 2vw;
}

@media screen and (min-width:300px) {
    .candidate-profile-image {
        height: 60px;
        border-radius: 50%;
        margin-left: 2vh;
        margin-top: 1vw;
        border: 1.5vh solid var(--bg-light-grey);
    }

    .contact-details .item {
        display: flex;
        flex-direction: column;
        align-items: start;
    
        width: 48%;
        height: 50px;
    }

    #chat>.candidate-messages {

        height: 72vh;
        width: 95%;
    
        margin-top: 1vw;
        margin-left: 1vw;
    
        padding-top: .5vh;
        padding-left: 1vh;
    
        font-size: var(--regular-font);
    
        color: var(--text-grey);
        background-color: var(--chatbox-bg-color);
    
        border: none;
        border-radius: 5px;
    
        overflow-y: auto;
    }

    .basic-details {
        width: 97%;
        height: 35vh;
    
        padding: .5vw;
        margin-top: 0.5vw;
    
        font-size: var(--regular-font);
    
        color: var(--text-grey);
    
        border: none;
        border-radius: 5px;
    
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width:900px) {
    .candidate-profile-image {
        height: 7vw;
        width: 7vw;
        border-radius: 7vw;
        margin-left: 2vh;
        margin-top: 1vw;
        border: 1.5vh solid var(--bg-light-grey);
    }

    .contact-details .item {
        display: flex;
        flex-direction: column;
        align-items: start;
    
        width: 48%;
        height: 7vh;
        min-height: 50px;
        max-height: 60px;
    }

    #chat>.candidate-messages {

        height: 72vh;
        width: 90%;
    
        margin-top: 1vw;
        margin-left: 1vw;
    
        padding-top: .5vh;
        padding-left: 1vh;
    
        font-size: var(--regular-font);
    
        color: var(--text-grey);
        background-color: var(--chatbox-bg-color);
    
        border: none;
        border-radius: 5px;
    
        overflow-y: auto;
    }

    .basic-details {
        width: 97%;
        height: 44vh;
    
        padding: .5vw;
        margin-top: 0.5vw;
    
        font-size: var(--regular-font);
    
        color: var(--text-grey);
    
        border: none;
        border-radius: 5px;
    
        display: flex;
        flex-direction: column;
    }
}
@media screen and (min-width: 1200px) {
    .contact-details .item {
        display: flex;
        flex-direction: column;
        align-items: start;
    
        width: 33%;
        height: 7vh;
        min-height: 50px;
        max-height: 60px;
    }
}

@media screen and (min-width:1400px)     {
    .candidate-summary {
        height: 150px;
    }
    .candidate-profile-image {
        height: 100px;
        width: 100px;
        border-radius: 100px;
        margin-left: 2vh;
        margin-top: 1vw;
        border: 1.5vh solid var(--bg-light-grey);
    }
}

@media screen and (min-width:1800px) {
    .candidate-summary {
        height: 170px;
    }
    .candidate-profile-image {
        height: 130px;
        width: 130px;
        border-radius: 130px;
        margin-left: 2vh;
        margin-top: 1vw;
        border: 1.5vh solid var(--bg-light-grey);
    }
    
}

.navlink-tabs {
    border-radius: 8px 8px 0px 0px;
    margin-top: 1.6vh;
    border-bottom: 1px solid black;
}

.navlinks {
    min-width: 6vw;
    padding: 5px;
    padding-top: 6px;
    margin-left: 1vh;
    background-color: #E6E6E6;
    color: var(--text-secondary-black-color);
    border-radius: 5px 5px 0px 0px;

    border: none;
    cursor: pointer;
    font-size: var(--regular-font);
}

.navlinks.active {
    padding: 7.5px;
    padding-top: 9px;
    background-color: var(--bg-blue);
    color: var(--text-white);
    border-radius: 7px 7px 0px 0px;
    font-weight: bold;
}

#tabList {
    border-radius: 8px 8px 0px 0px;
    margin-top: 1.6vh;
    border-bottom: 1px solid black;
    border: none;
    /* cursor: pointer; */
    font-size: var(--regular-font);
    display: flex;
    overflow-x: scroll;  /* Change from auto to scroll */
    scroll-behavior: smooth;
    /* Add these to ensure the content is actually scrollable */
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
}

.paddle {
    position: absolute;
    /* top: 50%; */
    /* transform: translateY(33%); */
    width: 20px;
    height: 32px;
    border: none;
    bottom: 0;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid var(--bg-dark-grey);
    /* border-radius: 50%; */
    z-index: 1;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
  }

  .paddle:hover {
    background-color: #f0f0f0;
  }

  .paddle.left {
    left: 0;
    align-items: center;
    justify-content: center;
  }

  .paddle.right {
    right: 0;
    align-items: center;
    justify-content: center;
  }

  .paddle.visible {
    /* display: block; Show when visible class is added */
    display: flex;
    align-items: center;
    justify-content: center;
  }

.tab-wrapper {
    border-bottom: 1px solid black;
    display: flex;
    align-items: center;
    width: 100%;
}

.tab-container {
    position: relative;
    width: 100%;
    display: flex;
  }


.basic-details h2 {
    padding-left: 1vw;
}

.basic-details .candidate-name {
    font-size: 2.2vw;
    color: black;
    font-weight: 700;
}

.work-experience-detail {
    width: 95%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 1.5vw;
}

.work-experience-detail .candidate-work-experience-title {
    font-size: var(--heading-font);
    line-height: var(--heading-line-height);

    color: var(--text-black);
}

.work-experience-detail p {
    font-size: var(--regular-font);
    line-height: var(--card-line-height);
}


.collapsible {
    display: none;
}

.show-more-button {
    cursor: pointer;
    color: var(--bg-blue);
    text-decoration: underline;

    background-color: transparent;
    border: none;

    font-size: var(--regular-font) !important;
    font-weight: 500;
}


.contact-details {
    width: 99%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.contact-details .item .label {
    color: var(--text-black);

    font-size: var(--regular-font);
    line-height: var(--regular-line-height);
    font-weight: bold;
}

.contact-details .item .value {
    color: var(--text-secondary-black-color);

    font-size: var(--regular-font);
    line-height: var(--regular-line-height);

}

.contact-details .item .value a {
    color: var(--bg-blue);
}


@media screen and (min-width: 300px) {
    .contact-details .item-tile {
        display: flex;
        flex-direction: column;
        align-items: center;
    
        width: 47%;
    
        padding-top: 1vw;
        margin: 1vw 1vw 1vw 0;
    
        background-color: var(--bg-light-grey);
        border-radius: 5px;
    }
}

@media screen and (min-width: 900px) {
    .contact-details .item-tile {
        display: flex;
        flex-direction: column;
        align-items: center;
    
        width: 30%;
    
        padding-top: 1vw;
        margin: 1vw 1vw 1vw 0;
    
        background-color: var(--bg-light-grey);
        border-radius: 5px;
    }    
}



.contact-details .item-tile .label {
    /* font-weight: bold; */
    font-size: var(--regular-font);
}

.contact-details .item-tile .value {
    font-size: var(--regular-font);
    color: var(--text-grey);
}

.contact-details .item-tile .value a,
.contact-details .item-tile .value button {
    display: block;

    padding: 0.5vw 1vw;
    margin-top: 1vw;
    margin-bottom: .8vw;

    background-color: var(--dark-blue);
    color: var(--text-white);

    font-size: var(--small-font);

    border: none;
    border-radius: 5px;
    cursor: pointer;

    transition: background-color 0.1s;
}

.disbled-item-tile-button {
    background-color: var(--bg-dark-grey) !important;
    cursor: not-allowed !important;
}

@media screen and (min-width:300px) {
    .header-img {
        width: 12px;
        height: 12px;
    
        margin-left: 0.75vw;
        padding: .2vw;
    
        border-radius: 50%;
        border: 1px solid var(--bg-dark-grey);
    
        transition: transform 0.2s;
    }
}

@media screen and (min-width:900px) {
    .header-img {
        width: 1vw;
        height: 1vw;
    
        margin-left: 0.75vw;
        padding: .2vw;
    
        border-radius: 50%;
        border: 1px solid var(--bg-dark-grey);
    
        transition: transform 0.2s;
    }    
}



.header-img:hover {
    transform: scale(1.2) rotate(-180deg);

    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);

    cursor: pointer;
}

/* skills tab */

.candidate-skills-tab-container {
    width: 97%;
    height: 42vh;
    overflow-y: auto;

    padding: .5vw;
    margin-top: 0.5vw;

    font-size: var(--regular-font);

    color: var(--text-secondary-black-color);

    border: none;
    border-radius: 5px;

    display: flex;

}

.candidate-skills-tab {
    width: 50%;
}


.career-progress .header,
.candidate-eucation-timeline .header,
.candidate-education-details .header,
.candidate-skills-tab .technical-skills .header,
.candidate-skills-tab .soft-skills .header,
.candidate-specifics-tab-container .header,
.basic-details .header {
    display: flex;
    align-items: center;

    font-size: var(--heading-font);
    line-height: var(--heading-line-height);

    color: var(--text-black);
}

.candidate-skills-tab .technical-skills ul li,
.candidate-skills-tab .soft-skills ul li,
.peculiar-aspects ul li {
    font-size: var(--regular-font);
    line-height: var(--tab-line-height);

    color: var(--text-secondary-black-color);
}

.candidate-education-details {
    width: 45%;
}

.candidate-education-details .industry-name {
    margin-top: .3vw;
}


.candidate-education-details .degree {
    margin-top: .5vw;

    font-size: var(--medium-font);
    color: var(--text-secondary-black-color);
}

.candidate-education-details .college {
    font-size: var(--regular-font);
    line-height: var(--regular-line-height);

    margin-top: .5vw;

    color: var(--text-secondary-black-color);
}

/* candidate specifics tab */

.candidate-specifics-tab-container {
    width: 97%;
    height: 42vh;
    overflow-y: auto;

    padding: .5vw;
    margin-top: 0.5vw;

    font-size: var(--regular-font);

    color: var(--text-secondary-black-color);

    border: none;
    border-radius: 5px;

    display: flex;

    justify-content: space-around;
}

.job-switches .no-of-switches {
    color: white;

    background-color: var(--bg-blue);
    padding: .3vw .5vw;
    border-radius: .3vw;
}

.peculiar-aspects {
    width: 60%;
}

/* candidate experience tab */

.candidate-experience-tab-container {
    width: 97%;
    height: 42vh;

    overflow-y: auto;

    padding: .5vw;
    margin-top: 0.5vw;

    font-size: var(--regular-font);

    color: var(--text-secondary-black-color);

    border: none;
    border-radius: 5px;

    display: flex;

}

.career-progress {
    width: 50%;
    color: var(--text-grey);
}

.candidate-eucation-timeline {
    width: 90%;
    color: var(--text-secondary-black-color);

    font-size: var(--regular-font);
}



.work-experience-other-details {
    display: flex;
    flex-direction: column;
}

.candidate-experience-tab-container .domain .header {
    font-size: 2vw;
}

.candidate-experience-tab-container .domain .name {
    font-size: 1.2vw;
}



/* Timeline Container */
.timeline {
    padding: 2vw;
}

/* Outer Layer with the timeline border */
.outer {
    border-left: 2px solid #e6e6e6;
}

/* Card container */
.card {
    position: relative;
    margin: 0 0 1.2vw 1.75vw;
    padding: .7vw;
    padding-top: 0px;
    /* background: var(--bg-blue); */

    border-radius: 8px;
    max-width: 400px;

}

/* Information about the timeline */
.info {
    display: flex;
    flex-direction: column;
    gap: .5vw;

    font-size: var(--regular-font);
    line-height: var(--regular-line-height);
}

/* Title of the card */
.title {
    position: relative;

}

/* Timeline dot  */
.card .info .title::before {
    content: "";
    position: absolute;
    width: 1vw;
    height: 1vw;
    background: white;
    border-radius: 999px;
    left: -3vw;
    background-color: var(--text-secondary-black-color);
}

/* NOTE :: chat component UI need to get removed once code gets merge  */

.badge-section {
    width: 22%;

}

.badge-section .card {
    background-color: var(--bg-blue);
    color: white;
    border-radius: 6px;
    min-height: 3vw;
    padding: .5vw;
}

.badge-section .card .label {
    font-weight: bold;
    font-size: .9vw;
    padding-bottom: 1vh;
}

.candidate-input-group {
    display: flex;
    justify-content: space-between;
    margin: 1vw;

    color: var(--text-grey);
    background-color: var(--chatbox-bg-color);

    border: none;
    border-radius: 5px;
}

.candidate-details-note textarea {


    color: var(--text-grey);
    background-color: var(--bg-light-grey);

    border: none;
    border-radius: 5px;
}

#chat-input {
    width: 90%;

    margin-left: 1vw;

    font-size: var(--regular-font);

    background-color: var(--chatbox-bg-color);
    border: 1px solid var(--chatbox-bg-color);
}

#candidate_notes {
    width: 96%;
    height: 33vh;

    resize: none;

    padding: 1vw;
    margin-top: 0.5vw;

    font-size: var(--regular-font);

    color: var(--text-grey);
    background-color: var(--bg-light-grey);

    border: none;
    border-radius: 5px;
}



.candidate-note-button {
    display: flex;
    justify-content: center;
    margin-top: 1vw;
}

.candidate-note-button>button {
    padding: 0.5vw 1vw;
    margin-right: 1vw;

    background-color: var(--dark-blue);
    color: var(--text-white);

    font-size: var(--regular-font);

    border: none;
    border-radius: 5px;
    cursor: pointer;

    transition: background-color 0.1s;
}

.candidate-note-button>button:hover {
    background-color: var(--blue-medium-dark);
}



#chat-input:focus {
    outline: none;
}

.candidate-input-group>button {
    display: flex;
    align-items: center;

    padding: 0.7vh 1vw;

    background-color: var(--dark-blue);
    color: var(--text-white);

    font-size: var(--regular-font);
    font-weight: bold;

    border: none;
    border-radius: 5px;

    cursor: pointer;

    transition: background-color 0.2s;
}

.messages-list {
    list-style-type: none;
    padding: .7vh;
    margin: 0;
}

.message {
    display: flex;
    margin-bottom: 1vw;

    width: 80%;

    padding: 0.5vw 1vw;

    background-color: var(--bg-blue);
    color: var(--text-white);

    border-radius: 5px;
}

.hr-user {
    max-width: 30vw;

    /* Align to the right */
    margin-left: auto;

    background-color: var(--bg-dark-grey);
    color: var(--text-black);
}

/* Candidate Questioning CSS end */

/* login page css starts here */
@media screen and (min-width:300px) {
    .login-container {
        display: flex;
        justify-content: center;
        align-items: center;

        flex-direction: column;
    
        min-height: 80%;
        width: 100%;

        
    
    }

    .welcome-container {
        background-image: url('/static/updated/images/login-backgound-image-2.jpg');
        background-position: center;
        background-size: cover;
        /* opacity: .45; */
        /* background: linear-gradient(to bottom right, var(--bg-blue), #5585ce) ; */
        display: flex;
        justify-content: end;
        align-items: start;
        color: white;
        font-weight: bold;
        width: 95%;
        height: 50vh;
    
        border-radius: 15px 15px 15px 15px;
    }
    
    .welcome-container img {
        position: absolute;
        height: 6vh;
        width: 15vw;
        margin-right: 2vw;
        margin-top: 2vw;
    }
}

@media screen and (min-width:900px) {
    
    .login-container {
        display: flex;
        justify-content: center;
        flex-direction: row;

        align-items: unset;

        min-height: 80%;
    
        padding: 2vh 1vw;

        width: auto;
    
    }

    .welcome-container {
        background-image: url('/static/updated/images/login-backgound-image-2.jpg');
        background-position: center;
        background-size: cover;
        /* opacity: .45; */
        /* background: linear-gradient(to bottom right, var(--bg-blue), #5585ce) ; */
        display: flex;
        justify-content: end;
        align-items: start;
        color: white;
        font-weight: bold;
        width: 60%;
        height: 93vh;
    
        border-radius: 15px 0px 0px 15px;
    }
    
    .welcome-container img {
        position: absolute;
        height: 20vh;
        width: auto;
        margin-right: 2vw;
        margin-top: 1vw;
    }
}



.fade-opacity {
    background: linear-gradient(to bottom right, var(--bg-blue), #5585ce);
    height: 100%;
    width: 100%;
    border-radius: 15px 0px 0px 15px;
    opacity: .4;
}




@media screen and (min-width:300px) {
    .sign-up-container,
    .sign-in-container,
    .verify-otp-container {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        width: 95%;
        border-radius: 15px;
        margin-top:5px;
        padding-bottom: 35px;
    }

    .sign-in-form,
    .sign-up-form {
        display: flex;
        flex-direction: column;
        padding: 2vw;
        width: 75vw;
    }

    .leap-supreme-content {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        width:80%;
    
        top: 20%;
        left: 10%;
    
        font-size: var(--heading-font);
    }

    .verify-otp-form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1vw;
        width: 85vw;
    }

    .code-verification input {
        height: 20px;
        width: 15px;
        border-radius: 6px;
        outline: none;
        font-size: .8rem;
        text-align: center;
        border: 1px solid #ddd;
        margin: 1vh 0vh;
    }

    .code_verify_button {
        color: white;
        background-color: var(--bg-dark-grey);
        padding: 2vh;
        margin: 1vh;
        width: 19vw;
        border-radius: 18px;
        justify-content: center;
        border: 1px solid var(--bg-dark-grey);
    }
    
    .code_verify_button.active {
        background-color: var(--bg-blue);
        border: 1px solid var(--bg-blue);
    }
}

@media screen and (min-width:900px) {
    .sign-up-container,
    .sign-in-container,
    .verify-otp-container {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        width: 40%;
        min-height: 90%;
        border-radius: 0px 15px 15px 0;

        margin-top:0;
    }    

    .sign-in-form,
    .sign-up-form {
        display: flex;
        flex-direction: column;
        padding: 2vw;
        width: 27vw;
    }

    .leap-supreme-content {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        
        width: auto;
    
        top: 50%;
        left: 10%;
    
        font-size: var(--heading-font);
    }

    .verify-otp-form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2vw;
        width: 25vw;
    }

    .code-verification input {
        height: 5vh;
        width: 2.2vw;
        border-radius: 6px;
        outline: none;
        font-size: 1.125rem;
        text-align: center;
        border: 1px solid #ddd;
        margin: 1vh 0vh;
    }

    .code_verify_button {
        color: white;
        background-color: var(--bg-dark-grey);
        padding: 2vh;
        margin: 1vh;
        width: 9vw;
        border-radius: 18px;
        justify-content: center;
        border: 1px solid var(--bg-dark-grey);
    }
    
    .code_verify_button.active {
        background-color: var(--bg-blue);
        border: 1px solid var(--bg-blue);
    }
}





.sign-in-form .greetings h3,
.sign-up-form .greetings h3 {
    margin: 0 !important;
}

.sign-in-form .greetings p,
.sign-up-form .greetings p {
    padding-top: 1.5vh;
    font-size: var(--medium-font);;

    color: var(--text-grey);
    margin-bottom: 3vh;
}

.sign-in-form input,
.sign-up-form input {
    padding: 2vh;
    margin: 1vh 0vh;
    border: 1px solid var(--bg-dark-grey);
    border-radius: 18px;
}

#login_button,
#signup_button {
    color: white;
    background-color: var(--bg-blue);
    padding: 2vh;
    margin: 1vh;
    border-radius: 18px;
    border: 1px solid var(--bg-blue);
    cursor: pointer;
}

.forgot-password {
    font-size: 2vh;
    color: var(--bg-dark-grey);
}

.sign-in-footer {
    margin-top: 1vh;
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: .9rem;

}
.custom-upload {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 5px;
}

#fileCountText {
    margin-top: 5px;
    margin-left: 10px;
    color: #555;
}

.terms-privacy-checkbox {
    font-size: .9rem;
}

.login a {
    color: var(--bg-blue);
    border-color: 1px solid var(--bg-blue);
}

.sign-up a {
    color: var(--bg-blue);
    font-size: 2vh;
    border: 1px solid var(--bg-blue);
    padding: .4vh .8vh;
    border-radius: 3vh;
}

.employer-checkbox {
    font-size: var(--regular-font);
    display: flex;
    align-items: center;
}

/* login page css ends here */
/* verify otp css starts here */
.button-container {
    display: flex;
    justify-content: center;
}



.code-verification {
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: 10px;
}



.code-verification input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}



input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* verify opt css ends here */

/* job description css starts here */
@media screen and (min-width:300px) {
    .container
    .candidate-job-description-container {
        width: 87.5%;
        height: 85%;
        margin-left: 2vw;
        margin-top: 1vw;
        padding: 0 4vw  2vw 4vw;
        display: block;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-gutter: stable;
    }    
}

@media screen and (min-width:900px) {
    .candidate-job-description-container {
        width: 87.5%;
        height: 80vh;
        margin-left: 1vw !important;
        margin-top: 1vw;
        padding: 0 4vw  2vw 4vw;
        display: block;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-gutter: stable;
    }    
}
@media screen and (min-width:300px){
    .candidate-job-title {
        display: flex;
        justify-content: space-between;
    
        position: sticky !important;
        top: 0;
        padding-top:2vw;
    
        background-color: white;
    
        font-size: var(--heading-font);
        font-weight: bold;
    
        -webkit-box-shadow: 0 7px 6px -8px grey;
        -moz-box-shadow: 0 7px 6px -8px grey;
        box-shadow: 0 7px 6px -8px grey;
    }
}

@media screen and (min-width:300px){
    
    .candidate-job-title {
        display: flex;
        justify-content: space-between;
    
        position: sticky !important;
        top: 0;
        padding-top:2vw;
    
        background-color: white;
    
        font-size: var(--heading-font);
        font-weight: bold;
    
        -webkit-box-shadow: 0 7px 6px -8px grey;
        -moz-box-shadow: 0 7px 6px -8px grey;
        box-shadow: 0 7px 6px -8px grey;
    }
}

.candidate-job-location {
    margin-top: 1.5vw;
    font-size: var(--regular-font);
    color: var(--text-secondary-black-color);
    line-height: var(--tab-line-height);
}

.candidate-job-overview,
.candidate-key-responsibilities,
.candidate-preferred-qualification,
.candidate-skills-and-qualifications {
    margin-top: 1.5vw;
}

.candidate-job-overview .title,
.candidate-key-responsibilities .title,
.candidate-preferred-qualification .title,
.candidate-skills-and-qualifications .title {
    font-size: var(--medium-font);
    line-height: var(--medium-line-height);
    color: var(--text-black);
}

.candidate-job-overview .subtext,
.candidate-key-responsibilities .subtext,
.candidate-preferred-qualification .subtext,
.candidate-skills-and-qualifications .subtext {
    font-size: var(--regular-font);
    line-height: var(--tab-line-height);
    margin-top: 1vw;
    width: 90%;
    color: var(--text-secondary-black-color);
}

.candidate-job-section {
    margin-top: 1.5vw;
}

.candidate-job-section-title {
    font-size: var(--regular-font);
    font-weight: bold;
    line-height: 1.7vw;
}

.candidate-job-section-header {
    font-size: var(--regular-font);
    line-height: var(--regular-line-height);
    font-weight: bold;
}

.candidate-job-section-content {
    margin-top: 1vw;
    width: 90%;
    color: #555555;

    font-size: var(--regular-font);
    line-height: var(--regular-line-height);

}

/* job description css ends here */

/* setting page container css starts here */




@media screen and (min-width:300px) {
    
    .settings-page-container {
        padding-bottom:20px;
    }

}

@media screen and (min-width:900px) {
    .settings-page-container {
        padding-bottom:0;
    }

    .candidate-settings-page-container {
        width: 100%;
        height: unset;
    }
}
    .settings-page-container {
        display: block !important;
    
        margin:1vw;
    
        padding:1vw;
    
        width: -moz-available;          /* For Mozzila */
        width: -webkit-fill-available;  /* For Chrome */
        width: stretch;                 /* Unprefixed */
    
        overflow: hidden;

        padding-bottom:20px;
    }    



.setting-container {
    max-height: 30%;
    

    overflow-y: auto;
    scrollbar-width: thin;
}

.settings-tabcontent {
    display: none;
    border-radius: 5px;
}

.settings-navigation-tabs {
    position: sticky;
    padding-top: 1vw;
    margin-top: 0;
    top: 0;
    background-color: white;
}

.settings-tabcontent.active {
    display: block;
}

.settings-form {
    padding: 1vw;
    width: 95%;
}

.settings-form .header {
    font-size: var(--medium-font);
    color: #000;
    font-weight: bold;

}

.settings-form .section {
    margin-top: 1.5vw;
}

.settings-form .form-group {
    display: flex;

    flex-wrap: wrap;
}

@media screen and (min-width:300px) {
    .settings-form .form-group .form-field {
        width: 48%;
    }
}

@media screen and (min-width:900px) {
    .settings-form .form-group .form-field {
        width: 33%;
    }
}

.settings-form .form-group .form-field {
    display: flex;
    flex-direction: column;

    font-size: var(--regular-font);
    line-height: var(--regular-line-height);

    margin-top: .3vw;
}

.settings-form .form-group .form-field-wide {
    display: flex;
    flex-direction: column;

    width: 100%;
    font-size: var(--regular-font);
    min-height: 5vw;
    margin-top: 1vw;
}

.settings-form .form-group .form-field label {
    margin-top: 1vw;

    font-size: var(--regular-font);
    line-height: var(--regular-line-height);
}

.settings-form .form-group .form-field input,
.settings-form .form-group .form-field select {
    font-size: var(--regular-font);
    line-height: var(--regular-line-height);
}

.settings-form .form-group .form-field input {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    width: 85%;
    padding: .7vw;
}

.settings-form .form-group .form-field textarea {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    width: 85%;
    height: 15vh !important;
    resize: none;
    padding: .7vw;
}

.settings-form .form-group .form-field-wide textarea {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    width: 93%;
    height: 15vh !important;
    resize: none;
    padding: .7vw;
}

.settings-form .form-group .form-field select {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    width: 93%;
    padding: .7vw;
}

.settings-form .submit-form,  .submit-organisation-form {
    display: flex;
    justify-content: center;
}

.settings-form .submit-form button,  .submit-organisation-form button {

    align-items: center;
    margin-top: 2vw;
    background-color: var(--bg-blue);
    padding: .8vw 1.6vw;
    color: white;
    border-radius: 6px;
    border: 1px solid var(--bg-blue);
}


.api-section-header {
    display: flex;
    font-size: var(--medium-font);
    font-weight: bold;
}

.api-section-header .name,
.api-section-header .api-key,
.api-section-header .actions {
    width: 33%;
    margin-bottom: .2vw;
    text-align: center;
}

.api-section-records {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.api-section-records .name,
.api-section-records .api-key,
.api-section-records .actions {
    margin-top: 1vw;

    width: 33%;
    text-align: center;
}

.api-section-records input {
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    width: 80%;
    padding: .5vw;
    align-items: center;
}

@media screen and (min-width:300px) {
    .api-section-records .actions button,
    .api-section-records .actions a {
        background-repeat: no-repeat;
        background-position: center;
        background-size: 10px;
        height: 10px;
        width: 10px;
        background-color: var(--bg-blue);
        border-color: transparent;
        border-radius: 1.5vw;
    }
}

@media screen and (min-width:900px) {
    .api-section-records .actions button,
    .api-section-records .actions a {
        background-repeat: no-repeat;
        background-position: center;
        background-size: 1.3vw;
        height: 2vw;
        width: 3vw;
        background-color: var(--bg-blue);
        border-color: transparent;
        border-radius: 1.5vw;
    }
}

.api-section-records .actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.api-section-records .actions .upload,
.api-section-records .actions .delete {
    height: 20px;
    width: 35px;
    transition: transform 0.2s;
    cursor: pointer;
}

.api-section-records .actions .upload {
    background-image: url('/static/updated/icons/icon-upload.png');
    margin-right: 1vw;
}

.api-section-records .actions .delete {
    background-image: url('/static/updated/icons/icon-delete-trash.png');
    display: inline-block;
}

.api-section-records .actions .upload:hover,
.api-section-records .actions .delete:hover {
    transform: scale(1.1);
}

.non-member-of-organization {
    margin-top: 2vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.create-organization a {
    display: block;

    align-items: center;
    margin-top: 2vw;
    background-color: var(--bg-blue);
    padding: .8vw 1.6vw;
    color: white;
    border-radius: 6px;
    border: 1px solid var(--bg-blue);
}


.job-list-container {
    width: 99%;
    padding-left: .5%;
    padding-top: 1%;
    padding-bottom: 2px;
}

.job-list-detail {
    margin-bottom: .8vw;
    padding: .8vw;

    flex-direction: column;
}

.job-list-detail .summary-details .title {
    font-weight: bold;
}



@media screen and (min-width:300px) {
    .job-list-detail .job-title {
        display: flex;
        align-items: center;
        
        font-size: var(--heading-font);
        line-height: var(--heading-line-height);

        margin-left: 1vw;
    }

    .job-list-status {
        display: flex; 
        justify-content: end;  
        width: 100%; 
        flex-wrap: wrap;
    }

    .job-list-actions{ 
        display: flex;
        margin-top:5px;
        width: 100%;
        justify-content: end;
    }

    .job-list-detail .summary-details .tags {
        font-size: .6rem;
    }

    .job-list-detail .department:first-child {
        margin-left: 1vw;
    }

    .job-list-detail .department:not(:first-child) {
        margin-left: 0;
    }
    
    .job-list-detail .department {
        margin-left: 1vw;
        padding: 0 1vw;

        display: inline-block;
    
        width: fit-content;
        height: 17px;
    
        font-size: var(--small-font);
        line-height: var(--regular-line-height);
    
        font-weight: 400;
    
        text-align: center;
    
        border-radius: 3px;
    
        background-color: #DCDCDC;
    }

    .job-list-detail .details {
        margin-top: 1vw;
        margin:1vw;
        display: flex;
        flex-direction: column;
    }

    .job-list-detail .details .description {
        
        font-size: var(--regular-font);
        line-height: var(--card-line-height);
    }

    .job-list-detail  .location {
        display: flex;

        
        padding:3px;
        text-align: center;
        font-size: var(--regular-font);
    }

    .job-list-detail  .location div, 
    .job-list-detail  .experience div,
    .job-list-detail  .salary div {
        display: flex;
    }
        
    
    .job-list-detail  .salary {
        display: flex;
        padding:3px;
        text-align: center;
        font-size: var(--regular-font);
    }
    
    .job-list-detail  .experience {
        display: flex;
        padding:3px;
        text-align: center;
        font-size: var(--regular-font);
    }
    .job-list-detail  img {
        height: 15px;
    }

     .job-list-detail  .expand-collapse-option-laptop { 
        display: none;
    }
    
    .job-list-detail  .expand-collapse-option-mobile { 
        display: flex;
        height: 100%;
        align-items: center;
    }

    /* .job-list-detail  .expand-collapse-option-laptop img {
        height: 4vw;
    } */
    
    .job-list-detail .tags {
        display: flex;
        flex-wrap: wrap;
    }
    
    .job-list-detail .tags div {
         
        margin-left: .3vw;
        margin-top: 2px;
        margin-bottom: 3px;
        padding: 1vw;
    
        background-color: var(--bg-blue);
        color: white;
    
        font-size: var(--small-font);
    
        border-radius: 4px;
        width: fit-content;
    }

    .job-list-detail .more-details {

        
        margin-top: 1vw;
        border-top: 1px solid grey;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        display: none;
        overflow: hidden;
    
        transition: all 2s linear;
    }


    .more-details .candidate-stats {
        display: flex;
        flex-direction: column;
        align-items: center;

        margin-top: 1vw;
        padding: 1vw;
        padding-top: 0;
    
        width: 97%;
        min-height: 300px;
        height: 45vh;
    
        border: 1px solid grey;
        border-radius: 6px;
    }


    
    .more-details .candidate-stats canvas {
    
        width: 300px !important;
        height: 300px !important;

    
        
        position: relative;
    }

    .job-list-description {
        width: 44%;
    }
    
    .more-details .analysis-information {
        margin-top: 1vw;
        padding: 0 0 1vw 1vw;
    
        width: 98%;
    
        border: 1px solid grey;
        border-radius: 6px;
    }

    .job-details-attributes {
        width:48%; 
        margin-top:10px;
        display: flex; 
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (min-width:900px) {
    .job-list-detail .job-title {
        display: flex;
        align-items: center;
    
        font-size: var(--heading-font);
        line-height: var(--heading-line-height);
    }

    .job-list-status {
        display: flex; 
        justify-content: start;  
        width: 75%; 
        flex-wrap: wrap;
    }

    .job-list-actions{ 
        display: flex;
        width: 22%;
        margin-top:0;
        justify-content: end;
    }
    .job-list-description {
        width: 50%;
    }

    .job-details-attributes {
        width:50%; 
        margin-top:0;
        display: flex; 
        flex-direction: row;
        justify-content: space-evenly; 
        align-items: center;
    }

    .job-list-detail .summary-details .tags {
        font-size: .78rem;
    }

    .job-list-detail .department:first-child {
        margin-left: 1vw;
    }

    .job-list-detail .department:not(:first-child) {
        margin-left: 0;
    }

    
    .job-list-detail .department {
        display: inline;

        padding: .3vw;
    
        width: fit-content;
        height: 1vw;
    
        font-size: var(--small-font);
        line-height: var(--regular-line-height);
    
        font-weight: 400;
    
        text-align: center;
    
        border-radius: 3px;
    
        background-color: #DCDCDC;
    }

    .job-list-detail .details {
        margin:0;
        margin-top: 1vw;
    
        display: flex;
        flex-direction: row;
    }

    .job-list-detail .details .description {
        font-size: var(--regular-font);
        line-height: var(--card-line-height);
    }

    .job-list-detail  .location {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        max-width: 20%;
        word-wrap: break-word;
    
        font-size: var(--regular-font);
    }
    
    .job-list-detail  .salary {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        max-width: 25%;
        word-wrap: break-word;

        font-size: var(--regular-font);
    }
    
    .job-list-detail .experience {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        max-width: 18%;
        word-wrap: break-word;

        font-size: var(--regular-font);
    }
    .job-list-detail  img {
        height: 1vw;
    }
    .job-list-detail  .expand-collapse-option-mobile { 
        display: none;
    }
    .job-list-detail  .expand-collapse-option-laptop {
        display: flex;
        width: 5%;
    }

    .job-list-detail  .expand-collapse-option-laptop img {
        height: 1.4vw;
    }
    
    .job-list-detail .tags {
        display: flex;
        flex-wrap: wrap;
    }
    
    .job-list-detail .tags div {
         
        margin-left: .3vw;
        margin-top: 2px;
        margin-bottom: 3px;
        padding: .3vw;
    
        background-color: var(--bg-blue);
        color: white;
    
        font-size: var(--small-font);
    
        border-radius: 4px;
        width: fit-content;
    }

    .job-list-detail .more-details {
        margin-top: 1vw;
        border-top: 1px solid grey;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        display: none;
        overflow: hidden;
        width: 100%;
    
        transition: all 2s linear;
    }

    .more-details .candidate-stats {
        display: flex;
        flex-direction: column;
        align-items: center;

        margin-top: 1vw;
        margin-left: 2vw;
        padding: 1vw;
        padding-top: 0;
    
        width: 46.5%;
        min-height: 300px;
        max-height: 500px;
        height: 45vh;
    
        border: 1px solid grey;
        border-radius: 6px;

    }
    
    .more-details .candidate-stats canvas {
        
    
        width: 300px;
        height: 300px;
    
        position: relative;
    }

    .more-details .analysis-information {
        margin-top: 1vw;
        padding: 0 0 1vw 1vw;
    
        width: 100%;
    
        border: 1px solid grey;
        border-radius: 6px;
    }
    
}

@media screen and (min-width:1300px) {
    .job-list-status {
        justify-content: end;  
    }
}

@media screen and (min-width:1350px) {
    .more-details .candidate-stats canvas {
        width: 350px !important;
        height: 350px !important;
    }
}

@media screen and (min-width:1800px) {
    .more-details .candidate-stats canvas {
        width: 370px !important;
        height: 370px !important;
    }
}


.summary-details {
    display: flex;
}

.collapsible-job-detail{
    cursor: pointer;
}

.analysis-details {
    height: 45vh;
    padding-right: 1vw;
    min-height: 250px;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.analysis-header {
    margin-top: 1vw;
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: .5vw;

    width: 100%;
    font-size: var(--regular-font);
}

.analysis-content {
    font-size: var(--regular-font);
    line-height: var(--card-line-height);
    margin-top: 1vw;
}

.job-details-actions {
    display: none;
    justify-content: center;
    align-items: center;
}

.job-details-actions a,
.job-details-actions button {
    margin-top: 1vw;
    margin-left: .5vw;
    padding: .6vw;

    color: white;

    border-radius: 4px;
    border-color: transparent;
}

.job-details-actions .view-details-btn {
    background-color: var(--bg-blue);

    cursor: pointer;

    padding:5px;

    font-size: var(--regular-font);
}

.job-details-actions .close-job-btn {
    background-color: var(--dark-blue);

    padding:5px;

    font-size: var(--regular-font);
}

/* job list page css ends here */
/* upload resume css starts here */
.common-container {
    width: 100%;
}

.child-common-container {
    width: 100%;
    padding: 1vw;
    margin-left: .5vw;
    padding-top: 0vw;
    padding-right: 0vw;
    display: block !important;
    overflow: hidden;
}

.common-form {
    padding: 1vw;
    width: 95%;
}

.common-form .header {
    font-size: var(--medium-font);
    font-weight: bold;
    color: var(--text-black);
    display: flex;
    text-align: center;
}

.common-form .section {
    margin-top: 1vw;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.common-form .single-col-form-group {
    display: flex;
    flex-wrap: wrap;
    width: 40%;

}

.common-form .double-col-form-group {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
}

.common-form .single-col-form-group .single-col-form-field,
.common-form .double-col-form-group .single-col-form-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    font-size: var(--regular-font);
    min-height: 5vw;
    margin-top: .5vw;
    margin-right: 1vw;
}



.common-form .double-col-form-group .double-col-form-field {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 49%;
    font-size: var(--regular-font);
    min-height: 5vw;
    margin-top: 1vw;
}



.single-col-form-field label,
.double-col-form-field label {
    margin-top: .3vw;
    text-align: start;

}

.single-col-form-field input {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    width: 100%;
    padding: .7vw;
}

.double-col-form-group .single-col-form-field input {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    width: 100%;
    padding: .7vw .4vw;
}

.double-col-form-field input {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    padding: .7vw;
}

.single-col-form-field input:focus,
.double-col-form-field input:focus {
    outline: none;
    border: 1px solid var(--bg-blue);
}

.double-col-form-field input[type="date"] {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    padding: .7vw;
}

.inline-double-col-form-field {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 1vw;
    width: inherit;
}

.inline-double-col-form-field input[type="checkbox"] {
    zoom: 1.5;
}

.inline-double-col-form-field label {
    text-align: start;

}

.single-col-form-field textarea {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    height: 15vh !important;
    resize: none;
    width: 100%;
    padding: .7vw;
}

.double-col-form-field textarea {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    height: 15vh !important;
    resize: none;
    width: 96%;
    padding: .7vw;
}

.single-col-form-field textarea:focus,
.double-col-form-field textarea:focus {
    outline: none;
    border: 1px solid var(--bg-blue);
}

.double-col-form-group .single-col-form-field textarea {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    height: 15vh !important;
    resize: none;
    width: 100%;
    padding: .7vw .44vw;
    /* margin-right: 1vw; */
}

::placeholder {
    color: #999;
}

.single-col-form-group select,
.double-col-form-group select {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    width: 100%;
    padding: .7vw;

    font-size: var(--regular-font);
}

.double-col-form-group .double-col-form-field select {
    margin-top: .5vw;
    background-color: white;
    border: 1px solid #999;
    border-radius: 6px;
    width: 100%;
    padding: .7vw;
}

.single-col-form-group select:focus,
.double-col-form-group select:focus {
    outline: none;
    border: 1px solid var(--bg-blue);
}

.common-form .submit-form {
    display: flex;
    justify-content: center;
}

.common-form .submit-form button {

    align-items: center;
    margin-top: 2vw;
    background-color: var(--bg-blue);
    padding: .8vw 1.6vw;
    color: white;
    border-radius: 6px;
    border: 1px solid var(--bg-blue);
}

/* Message Container */
#message-container {
    display: none;
    justify-content: center;

    text-align: center;
}

/* Loader */
.progress-bar {
    display: flex;
    align-items: center;

    width: 100%;
    height: 8px;

    margin: 10px 0;

    border-radius: 10px;

    background-color: var(--bg-light-grey);
}

.progress-step {
    width: 10%;
    height: 100%;

    margin-right: 5px;

    background-color: var(--bg-dark-grey);

    border-radius: 10px;
}


.loader-supreme-progress {
    width: 10px;
    height: 10px;

    margin-left: 5px;

    border: 4px solid white;
    border-top: 4px dashed var(--bg-blue);
    border-left: 3px dashed var(--bg-blue);
    border-radius: 100%;

    animation: spin 0.6s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}



.default-description-section-child,
.default-description-section {
    width: 100%;
}

.default-description-section {
    flex-direction: column;
}

.add_description_section {
    background-color: var(--bg-blue);
    padding: 1vw;
    color: white;
}

.remove-private-description-section-btn, .remove-description-section-btn {
    background-color: var(--bg-blue);
    border: transparent;
    border-radius: 1vw;
}

.add_description_section {
    justify-content: center;
}

.default-description-section-parent,
#default-description-section-container {
    width: 100%;
}

/* register job css ends here */

/* contact us form css starts here */
.child-common-container-flex {
    margin:1vw;
}

.contact-us-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:300px) {
    .contact-us-image img {
        height: 22vh;
    }
}

@media screen and (min-width:900px) {
    .contact-us-image img {
        height: 65vh;
    }
}

.contact-us-form {
    width: 50%;
}

.contact-us-header {
    font-size: var(--heading-font);
}

/* contact us form css ends here */

/* footer css starts here */
@media screen and (min-width:300px) {
    .footer {
        position: fixed;
        bottom: 0;
    
        padding: .5vh;
    
        font-size: .75rem;
        text-align: center;

        width: calc(100% - 10px);
    
        background-color: var(--bg-grey);
        color: var(--text-grey);
    
        transition: width 0.28s;
    }
}

@media screen and (min-width:900px) {
    .footer {
        position: fixed;
        bottom: 0;
    
        width: calc(100% - 267px);
        padding: .5vh 0;
    
        font-size: .75rem;
        text-align: center;
    
        background-color: var(--bg-grey);
        color: var(--text-grey);
    
        transition: width 0.28s;
    }
}
/* footer css ends here */

/* job details chatbox css starts here*/
@media screen and (min-width:300px) {
    .share-message-container {
        flex-direction: column;
        width: 100%;
    }

    .blur {
        position: relative;
        height: 100px; /* Adjust height as needed */
        margin: auto; /* Centers the section itself */
        filter: blur(8px);
        display: flex;
        align-items: center;


    }
    .job-details-chatbox {
        display: flex;
        flex-direction: column;
        width: 95%;

        padding: 1vw; 
        margin-bottom:15px;
        margin-top:10px;
    }
    .job-detail-chat {
        width:97%;
    }
    #chat>.messages-container {

        height: 52vh;
        width: 98%;

        margin-bottom:10px;
    }
}
@media screen and (min-width:900px) {
    .share-message-container {
        flex-direction: row;
    }
    .job-details-chatbox {
        display: flex;
        flex-direction: column;
        height: 64.5vh;
        width: 27%;
        margin-bottom: 0;
        padding:0;

        margin-top:0;
    }
    #chat>.messages-container {

        height: 52vh;
        width: 88%;
    }

    .job-detail-chat {
        width:100%;
    }
}

#chat>.messages-container {

    margin-top: 1vw;
    margin-left: 1vw;

    padding-top: .5vh;
    padding-left: 1vh;

    font-size: var(--regular-font);

    color: var(--text-grey);
    background-color: var(--chatbox-bg-color);

    border: none;
    border-radius: 5px;

    overflow-y: auto;
}

#job-details-chatinput-box {
    height: 2.5vw;
}

/* job details chatbox css ends here */

.ai-txt-upload-button {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.ai-txt-btn {
    font-size: var(--regular-font);
}

.ai-txt-upload-button input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    /* Make sure it covers the full button width */
    height: 100%;
}

button {
    font-size: var(--regular-font);
}

.authorization-footer {
    position: fixed;
    bottom: 0;

    width: 100%;
    padding: .5vh 0;

    font-size: .75rem;
    text-align: center;

    background-color: var(--bg-grey);
    color: var(--text-grey);
}


/* Resume View Styles */
.resume-section {
    margin-bottom: 30px;
}

.resume-section-title {
    background-color: var(--bg-dark-grey);
    padding: 10px;
    margin-bottom: 15px;
    font-weight: bold;
}

.resume-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.resume-info-item {
    display: flex;
    gap: 10px;
    padding: 5px;
}

.resume-label {
    font-weight: bold;
    min-width: 150px;
}

.resume-experience-item,
.resume-education-item {
    border-left: 3px solid var(--bg-blue);
    padding: 10px;
    margin-bottom: 15px;
}

.resume-experience-text {
    margin-top: 8px;
    white-space: pre-line;
}

.resume-date {
    color: var(--bg-dark-grey);
    font-style: italic;
}

.resume-container {
    padding: 20px;
}

/* ======================================= */
/*                  ATS                    */
/* ======================================= */


.ats-header-bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 10px 20px;
	width: 100%;
	gap: 10px;
}

.ats-critical-analysis-textarea {
    width: 95%;
    
    flex-grow: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: auto;

    padding: 15px;
    margin-top: 10px;

    font-family: 'Roboto', sans-serif;
    font-size: var(--regular-font);

    background-color: var(--bg-light-grey);
    border-radius: 10px;
    color: var(--text-grey);

    resize: none;
    overflow-y: auto;
    word-wrap: break-word; 
}

.ats-critical-analysis {
    display: flex;
    flex-direction: column;
    height: 80vh;
    width: 99%;
    align-items: center;
}

.ats-tabcontent {
    display: flex; 
    flex-grow: 1; 
    flex-direction: column; 
    width: 100%; 
    align-items: center;
    overflow-y: auto;
}

#share-job-analysis-btn {
    margin-bottom: 10px;
}

#ai-skill-generation-popup-message {
    color: red;
    font-size: small;
}

@media screen and (min-width:300px) {
    .ai-skill-generation-button {
        background-color: #4ed2f3;
        border: none;
        border-radius: 5px;
        height: 23px; /* Match input height */
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        top: 3px;
        position: relative;
    }

    .ai-skill-generation-button img {
        height: 15px;
    }
}

@media screen and (min-width:600px) {
    .ai-skill-generation-button {
        background-color: #4ed2f3;
        border: none;
        border-radius: 5px;
        padding: 6px;
        height: 30px; /* Match input height */
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        top: 3px;
        position: relative;
    }

    .ai-skill-generation-button img {
        height: 18px;
    }
}

@media screen and (min-width:900px) {
    .ai-skill-generation-button {
        background-color: #4ed2f3;
        border: none;
        border-radius: 5px;
        padding: 6px;
        height: 40px; /* Match input height */
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        top: 3px;
        position: relative;
    }
    .ai-skill-generation-button button {
        height: 35px;
    }
}



.ai-skill-generation-icon {
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-skill-generation-button:hover .ai-skill-generation-icon {
    animation: smallBounce 1s infinite;
}

@keyframes smallBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.share-icon {
    position: absolute;
    bottom: -20px;
    right: -12px;
    z-index: 1;
    background-color: transparent;
    border: none;
    outline: none;
}

.share-icon > img {
    width: 20px;
    padding: 1px 1px 2px 1px;
    border-radius: 50%;
    background-color: var(--bg-blue);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    border: 1px solid white;
}

.share-icon > img:hover {
    transform: scale(1.1);
}

.analysis-toggle{
    display: flex;
    justify-content: center;
}

.segmented-control {
    background-color: var(--bg-grey);
    border-radius: 30px;
    padding: 4px;
    display: inline-flex;
    position: relative;
    margin-bottom: 10px;
}

.segmented-control input {
    display: none;
}

.segmented-control label {
    color: #888;
    padding: 8px 20px;
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.segmented-control input:checked + label {
    color: white;
}

.analysis-share-slider {
    background-color: var(--bg-blue);
    position: absolute;
    border-radius: 24px;
    top: 4px;
    bottom: 4px;
    transition: transform 0.2s ease;
    width: 48%;
}

#analysis-summary:checked ~ .analysis-share-slider {
    transform: translateX(0);
}

#analysis-full:checked ~ .analysis-share-slider {
    transform: translateX(100%);
}

#job-credits:checked ~ .analysis-share-slider {
    transform: translateX(0);
}

#api-credits:checked ~ .analysis-share-slider {
    transform: translateX(100%);
}

.analysis-share-textarea {
    color: var(--text-grey);
    font-size: var(--regular-font);
    background-color: var(--bg-light-grey);
    border-radius: 5px;
    height: 50vh;
    width: 95%;
    resize: none;
    overflow-y: auto;
    padding: 1vw;
}

.notes-section {
    min-height: 55vh;
    max-height: 55vh;
}

@media screen and (min-width:900px) {
    .notes-section {
        padding: 0 1vw;
    }
}

.analysis-content-popup{
    display: flex !important;
    justify-content: space-evenly;
}

@media screen and (min-width:300px) {
    .ats-logo {
        width: 100px;
        height: 23px;
        justify-self: center;
    }
}

@media screen and (min-width:900px) {
    
    .ats-logo {
        width: 150px;
        height: 35px;
        justify-self: center;
    }
}
/* list interviewers css starts here */
.list-interviewers {
    width: 100%;
    font-size: var(--regular-font);
}
/* list interviewers css ends here */


/* referral candidate css starts here */

@media screen and (min-width:300px) {
    .referral-candidate-list {
        display: flex;
        justify-content: center;
    }
    .referral-message {
        margin-top:10px;
        width: 97%;
        margin-bottom:30px;
        padding-bottom:30px;
    }

    .add-referral-container {
        width: 100%;
        align-items: center;
    }
}

@media screen and (min-width:900px) {
    
    .referral-candidate-list {
        width: 20%; 
        height: 95%;
    }

    .referral-message {
        width: 100%; height: 100%; overflow: auto; margin-left: 1vw;
        padding-bottom:0;
    }
}

/* referral candidate css ends here */

/* create job css starts here */

@media screen and (min-width:300px) {
    .create-candidate-container {
        height: 93.5%;
    }

    .experience-min-max-range, .salary-min-max-range {
        width: 100%;
    }
}
@media screen and (min-width:900px) {
    .create-candidate-container {
        height: 100%;
    }

    .experience-min-max-range, .salary-min-max-range {
        width: 48%;
    }
}

/* create job css ends here */

@media screen and (min-width:300px) {
    .hr-upload-interviewer-file{
        width:80%;
    }
}

@media screen and (min-width:900px) {
    .hr-upload-interviewer-file{
        width:50%;
    }
}


.btn-success {
    background-color: #198754;
    color: white;
    border: 1px solid #198754;
    padding: .375rem .75rem;
    border-radius: .375rem;
    cursor: pointer;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: 1px solid #dc3545;
    padding: .375rem .75rem;
    border-radius: .375rem;
    cursor: pointer;
}

.btn-success:hover {
    background-color: #218838; /* Darker shade of green */
    color: #ffffff; /* Ensuring text color stays readable */
    border-color: #1e7e34; /* Optional: Adjust border color */
    cursor: pointer; /* Change cursor to pointer for better UX */
  }

  .btn-danger:hover {
    background-color: #c82333; /* Darker shade of red */
    color: #ffffff; /* Ensuring text color stays readable */
    border-color: #bd2130; /* Optional: Adjust border color */
    cursor: pointer; /* Change cursor to pointer for better UX */
  }
  

.employer-details-container{
    display: flex;
    flex-wrap: wrap;
    
    width: 95.6%;

    margin-left:1%;
    margin-top:1%;

    padding:1vw;

    
}

.employer-details-container .section-header {
    margin-top:1vh;
}
.employer-details-container .detail {
    display: flex;
    width: 24%;
    margin: 8px 0;

    flex-direction: column;

}

.employer-details-container  .detail .label {
    font-size: var(--regular-font);
}

.employer-details-container  .detail .value {
    font-size: var(--regular-font);
    font-weight: bold;
}

.employer-report-tile-label {
    display: flex; 
    align-items: center; 
    justify-content:space-evenly;
}

.activity-log-detail .more-details {

        
        margin-top: 1vw;
        border-top: 1px solid grey;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        display: none;
        overflow: hidden;
    
        transition: all 2s linear;
    }

.activity-log-detail img {
    height: 2vh;
}

.activity-log-redirection {
    color: var(--bg-blue);
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.download-emails{
    margin-right:10px; 
    color: var(--bg-blue); 
    font-size: .8rem !important;
}

.employer-details{
    color: var(--bg-blue);
}