body {
    background-color: #eff5fc;
}

.primary-background {
    background-color: #3a57e8;
}

a {
    text-decoration: none;
}
.slidebar-main{
    z-index: 10 !important;
}

.menucard {
    background-color: white !important;
}

.menucard:hover {
    background-color: #0d6efd !important;
}

.p-4 {
    padding: 1.5rem !important;
}
.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/*start buttons css */
.primary-btn {
    padding: 7px 15px;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.primary-btn:hover {
    background-color: #0056b3 !important;
}
.light-btn {
    padding: 7px 15px;
    background-color: #f6f9fa;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.light-btn:hover{
    background-color: #d4d5d5 !important;

}
.danger-btn{
    padding: 7px 15px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.danger-status{
    max-height: 1.6rem !important;
    padding: 4px 15px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.active-status{
    padding: 4px 15px;
    background-color: #198754;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.danger-btn:hover{
    background-color: #940513 !important;

}

.view-btn{
    padding: 7px 15px;
    background-color: #fff;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    height: 2.2rem;
}

.play_btn{
    height: 3rem;
    width: 3rem;
}
.play_btn_small{
    height: 2.5rem;
    width: 2.5rem;
}




/* end buttons css */

/* start font css */
.heading_text{
    font-size: 27px !important;
    font-weight: 700 !important;
}
.sub_heading_text{
    font-size: 22px !important;
    font-weight: 500 !important;
}
.normal_text{
    font-size:16px !important;
}
.small_text{
    font-size:14px !important;
}


/* end font css */

/*start font color css*/
.theme_font{
    color: #0078d4 !important;
}
/* end font color css */

.input_small_height{
    height: 2rem !important;
}
/*start command flow css */
#workflow-container {
    display: block;
    position: relative;
    top: 20px;
    height: 75vh;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    overflow-y: auto;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.save-button-div-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    height: 3rem;
    align-items: center
}

.save-button-div {
    height: 3rem;
    align-items: center;
    display: flex !important;
    flex-direction: row !important;

}

.save-button-div .bi-caret-right-square {
    font-size: 3rem !important;
}

.save-button-div #save-workflow-btn {
    margin-left: 1rem;
}

.save-button-div-workflow-name {
    padding: 0.2rem 1rem;
    text-decoration: underline;
    font-size: 18px;

}



input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: none !important;
}

select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: none !important;
}
.formbar-heading{
    font-size: 25px ;
    text-align: center;
    margin-bottom: 10px;
}
.form-group input {
    height: 2.3rem !important;
    font-size: 14px !important;
}

.form-group select {
    height: 2.3rem !important;
    font-size: 14px !important;
}

.form {
    width: 100%;
    height: 100%;
}

.steps-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.workflow-tag {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    width: 120px;
    padding: 10px;
    margin: 35px;
    color: #ffffff;
    background-color: #0078d4;
    border-radius: 5px;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    width: 20%;
    background-color: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.workflow-step input,
.workflow-step button {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.workflow-step input {
    padding: 20px;
    width: 200px;
    font-size: 14px;
}

.workflow-step button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    background-color: #0078d4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.workflow-step .add-step {
    color: white;
    background-color: #0078d4;
}

.workflow-step .remove-step {
    color: red;
    background-color: #eeeeee !important;
}

.workflow-step button:hover {
    background-color: #005a9e;
}

.add-step-btn {
    font-size: 30px;
    width: 60px;
    height: 60px;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.add-step-btn:hover {
    background-color: #005a9e;
}

.submit-btn {
    width: 12%;
    padding: 10px;
    font-size: 18px;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #005a9e;
}

.workflow-step+.workflow-step {
    margin-top: 40px;
}

.arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.arrow-icon {
    position: absolute;
    bottom: -50px;
    font-size: 40px;
    color: #0078d4;
    background-color: transparent;
    padding: 5px;
    cursor: pointer;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.arrow-icon:hover {
    color: #005a9e;
}

.formbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: fixed;
    top: 8vh;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #f4f7fb;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.formbar.open {
    right: 0;
}

.formbar-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formbar-content label {
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 4px;
}

.formbar-content input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.formbar-content input[type="text"]:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 4px rgba(13, 110, 253, 0.2);
}
.formbar-content button:hover {
    background-color: #0056b3;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px !important;
}
#step-input {
    width: 200px;
    cursor: pointer;
}






/* end command flow css */

/* start workflow css */
.workflow-card-bottom{
border-top:1px solid #d0d5d2;
height: 3.3rem;
padding-top: 1rem;
margin-top:1rem;
}
.workflow-date{
    opacity: 0.5;
}
.search-workflow .input-group input{
    font-size:14px;
}
.form-check-input{
    font-size:14px !important;
}
.dashboard-container {
    margin: 5rem 1rem ;
    width: 97%;
    z-index: 100;
    padding: 40px;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}


.filter-workflow {
    margin-bottom: 20px;
    font-size: 14px;
    color: #636e72;
}

.form-check-label {
    font-size: 14px !important;
    color: #6c757d;
}

#show-all-workflows {
    margin-right: 5px;
}

.search-workflow {
    width: 300px;
}

.search-input {
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.input-group-text {
    background: transparent;
    border: none;
    cursor: pointer;
}

.no-workflows-message {
    text-align: center;
    font-size: 18px;
    color: #b0b8c1;
    margin-top: 20px;
}

.workflows-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.workflow-card {
    background: rgb(255, 255, 255);
    padding: 30px 40px;
    border-radius: 15px;
    color: #2c3e50;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(108, 108, 108, 0.4);
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.workflow-title {
    font-weight: 600;
    color:#000 ;
    font-weight: 600;
    margin-bottom: 0;
}

.workflow-desc {
    color: #000;
    opacity: 0.5;
    margin-bottom: 15px;
}

.view-details-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(125, 125, 125, 0.2);
}

.view-details-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(125, 125, 125, 0.2);
}

.modal {
    background: rgba(0, 0, 0, 0.5);
}
/* end workflow css */
/* user-dashboard-info-box */
.user-dashboard-info-box .candidates-list .thumb {
    margin-right: 20px;
}
.user-dashboard-info-box .candidates-list .thumb img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
}

.user-dashboard-info-box .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0;
}

.user-dashboard-info-box .candidates-list td {
    vertical-align: middle;
}

.user-dashboard-info-box td li {
    margin: 0 4px;
}

.user-dashboard-info-box .table thead th {
    border-bottom: none;
}

.table.manage-candidates-top th {
    border: 0;
}

.user-dashboard-info-box
    .candidate-list-favourite-time
    .candidate-list-favourite {
    margin-bottom: 10px;
}

.table.manage-candidates-top {
    min-width: 650px;
}

.user-dashboard-info-box .candidate-list-details ul {
    color: #969696;
}

/* Candidate List */
.candidate-list {
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eeeeee;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.candidate-list:hover {
    -webkit-box-shadow: 0px 0px 34px 4px rgba(33, 37, 41, 0.06);
    box-shadow: 0px 0px 34px 4px rgba(33, 37, 41, 0.06);
    position: relative;
    z-index: 99;
}
.candidate-list:hover a.candidate-list-favourite {
    color: #e74c3c;
    -webkit-box-shadow: -1px 4px 10px 1px rgba(24, 111, 201, 0.1);
    box-shadow: -1px 4px 10px 1px rgba(24, 111, 201, 0.1);
}

.candidate-list .candidate-list-image {
    margin-right: 25px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    border: none;
}
.candidate-list .candidate-list-image img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
}

.candidate-list-title {
    margin-bottom: 5px;
}

.candidate-list-details ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0px;
}
.candidate-list-details ul li {
    margin: 5px 10px 5px 0px;
    font-size: 13px;
}
.candidate-list .candidate-list-favourite-time {
    margin-left: auto;
    text-align: center;
    font-size: 13px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
}
.candidate-list .candidate-list-favourite-time span {
    display: block;
    margin: 0 auto;
}
.candidate-list .candidate-list-favourite-time .candidate-list-favourite {
    display: inline-block;
    position: relative;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 1px solid #eeeeee;
    border-radius: 100%;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    font-size: 16px;
    color: #646f79;
}
.candidate-list .candidate-list-favourite-time .candidate-list-favourite:hover {
    background: #ffffff;
    color: #e74c3c;
}

.candidate-banner .candidate-list:hover {
    position: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    z-index: inherit;
}

.bg-white {
    background-color: #ffffff !important;
}

.user-dashboard-info-box .candidates-list .thumb {
    margin-right: 20px;
}
#top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* user profile  */

p {
    margin-bottom: 0 !important;
}
input {
    height: 2.5rem !important;
}
.form-check-input{
    height: 1rem !important;
    margin-right: 10px;
}
.icon_background {
    height: 50px;
    width: 50px;
    background: #b8cef0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #3a57e8;
}

.top-margin-bg {
    top: 4rem;
    height: 10rem;
}
.bg-image-user-list {
    background-image: url("/images/top-header.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 82%;
    height: 215px;
    border-radius: 16px 16px 4px 4px;
}
/* Table Styling */
.table {
    border-collapse: separate;
    border-spacing: 0 10px; /* Add space between rows */
}

.table th, .table td {
    padding: 8px 20px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #ffffff;
}

.table-hover tbody tr:hover {
    background-color: #e9ecef;
    transition: background-color 0.2s ease-in-out;
}

.table-bordered th, .table-bordered td {
    border: 1px solid #dee2e6;
}

/* Header Styling */


/* Profile Image */
.table td img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.bottom-line{
    border-bottom: 1px solid rgba(182, 180, 180, 0.54) !important;
}
/* Status Badge */
.badge-success {
    background-color: #28a745;
    color: white;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
}

.table td a:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Button Styling for Create User */
.create-btn {
    background-color: #3a57e8;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.create-btn:hover {
    background-color: #0d6efd;
}

/* Modal Styling */




.modal-content {
    border-radius: 8px;
    padding:  10px 0;
    width: 40rem;
    border: #000 1px solid;
}



.modal-footer {
    border-top: none;
}

/* Custom Search Input */
.search-users .form-control {
    width: 200px;
    border-radius: 12px;
    border: 1px solid #ced4da;
}

.search-users .input-group-text {
    background-color: #f1f3f5;
    border-radius: 50%;
}

.input-group-text i {
    font-size: 18px;
}
.modal-header{
    margin: 0 !important;
    padding: 10px 40px !important;
    margin:0 !important;

}
.modal-body{
    padding:0px 40px !important;
}
.user_permission_card{
    background-color: #eff5fc;
    padding:1rem 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
}
.user_permission_card_header{
    font-weight: 600;
    margin-bottom: 5px;
}
.form-check{
    margin-bottom: 5px;
    height: 0.5rem;
    display: flex;
    align-items: center;
}
.user_permission_input{
    margin-right: 10px !important;
}
.user_permission_input_label{
    height: 100%;
    display: flex;
    align-items: center;
    margin-top: 2px;
}
.profile-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
.profile-img img {
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.edit-icon {
    position: absolute;
    top: 5px;
    right: 7rem;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.hero-text{
    font-size: 30px;
}

.form-check-input{
    font-size: 12px;
    border-radius: 8px;
}

.form-check-label{
    font-size: 12px;
}

.search-input{
    font-size: 12px;
}

/* start client dashboard */
.client-footer{
padding: 0 40px !important;
}
/*start admin dashboard */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem !important;
    font-weight: 600 !important;
    color: #555555 !important;
    margin: 0;
    text-align: left;
    border-bottom: 2px solid #ddd !important;
    padding-bottom: 10px;
    font-family: sans-serif;
}

.btn-create-client {
    background-color: #3a57e8;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 0.8rem;
    border-radius: 5px;
    font-weight: 600;
}

.btn-create-client:hover {
    background-color: #2a47c8;
}

table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #ddd;
}



table tr:hover {
    background-color: #f1f1f1;
}



.actions {
    display: flex;
    gap: 10px;
}

.actions form {
    margin: 0;
}

.toggle-users {
    font-size: 1.2rem;
    cursor: pointer;
    display: inline-block;
    transform: rotate(-90deg);
    transition: transform 0.3s;
    color: #898a8f;
}

.toggle-users.open {
    transform: rotate(0deg);
}
/*end admin dashboard  */

/* start profile section*/
.profile-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.profile-img img {
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.edit-icon {
    position: absolute;
    top: 5px;
    right: 7rem;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}



.form-group {
    margin-bottom: 1.5rem;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #888;
}

.password-wrapper .toggle-password:hover {
    color: #000;
}

@media (max-width: 768px) {
    .profile-container {
        padding: 1.5rem;
    }
}
/* end profile section */
