﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #f2f4f7 !important;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background-color: white;
    padding-top: 30px;
    color: white;
    transition: width 0.3s ease-in-out;
}

.sidebar h2 {
    text-align: center;
    color: #ecf0f1;
    margin-bottom: 40px;
    font-size: 22px;
    display: none;
}

/* User profile image */
.sidebar .profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
}

.sidebar a {
    color: #6a7481;
    padding: 12px;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
}

.sidebar a:hover {
    background-color: #d2ebf7;
    color: #08556c;
}

.sidebar a i {
    font-size: 20px;
}

.home-menu-icon {
    margin: 8px 0 8px 6px;
    padding: 10px;
    height: 80px !important;
    padding: 5px !important;
}

.portrait-menu-icon {
    width: 90%;
    height: 90%;
    margin: 8px 0 8px 4px;
    padding: 10px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px ridge #03ad98;
}

/* Content Area */
.content {
    margin-left: 80px;
    padding: 30px;
    transition: margin-left 0.3s ease-in-out;
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
   /* border-bottom: 1px solid #ddd;*/
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.profile-header img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin-right: 20px;
}

.profile-header h1 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

.profile-header p {
    font-size: 16px;
    color: #777;
}

.progress-bar {
    height: 20px;
    background-color: #d2f4ed;
    border-radius: 7px;
    margin-bottom: 15px;
}

/* Summary Card */
.summary-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.summary-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.summary-card p {
    font-size: 16px;
    color: #555;
}

/* Section Cards */
.section-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    transition: transform 0.2s ease-in-out;
}

.section-card:hover {
    transform: translateY(-5px);
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.section ul {
    list-style: none;
    padding: 0;
}

.section ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.link-card {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.link-card:hover {
    text-decoration: underline;
}

.profile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*max-width: 800px;*/
    padding: 20px;
    border-radius: 8px;
    /*box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);*/
}

.profile-item {
    width: 30%;
    margin-bottom: 15px;
    position: relative;
}

.profile-item h4 {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.profile-item p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.profile-item input {
    width: 100%;
    border: none;
    font-size: 16px;
    color: #333;
    padding: 5px;
    background: transparent;
}

.profile-item input:disabled {
    background: transparent;
    border: none;
    color: #333;
}

.save-btn {
    display: none;
    
}

.btnCustom {
    margin-top: 15px;
    padding: 8px 15px;
    background: #08556c;
    color: #f0f4f6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 20px;
}

#editImageModal {
    display: flex;
    gap: 10px; 
    align-items: center;
}

.skillsPerks-section {
    margin-top: 10px;
}

.skillsPerks-section h3 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.skillsPerks-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skillsPerks-tag {
    border: solid 1px #e7ebee;
    /*background-color: #f1f3f5;*/
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}
.remove-skillsPerks {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
}

.salary-range {
    display: flex;
    gap: 10px;
    align-items: center;
   /* border-bottom: 1px solid rgb(204, 204, 204);*/
}

#editJobPrefernces {
    margin-top: 10px;
}

#searchSpeciality {
    width: 200px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#suggestions {
    list-style-type: none;
    padding-left: 0;
    border: 1px solid #ccc;
    max-height: 100px;
    overflow-y: auto;
    width:200px;
}

#suggestions li {
    padding: 5px;
    cursor: pointer;
}

#suggestions li:hover {
    background-color: #f0f0f0;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.progress-item:last-child {
    border-bottom: none;
}

.item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.circle-done {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #2d9cdb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d9cdb;
    font-size: 12px;
}

.circle-todo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 12px;
}
.status-tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: bold;
}

.done {
    background-color: #f0f2f5;
    color: #555;
}

.todo {
    background-color: #d6f5f3;
    color: #2f908c;
}

.dropdown-arrow {
    font-size: 12px;
    color: #888;
    margin-left: 8px;
}

.DocStatus {
    display: none;
    border: none;
    border-bottom: 1px solid #ccc;
}

.buttons {
    display:flex;
}

.editIcon {
    float:right;
}

.progress {
    background: none;
    border: none;
    font-size: 16px;
}

.selectDrp {
    border-radius: 10px;
    width: 100%;
    border: none;
    font-size: 16px;
    padding: 5px;
    background: transparent;
    display: none;
}

.distance{
    display:flex;
    gap:20px;
}

#deleteJobPreference {
    display: none;
    cursor: pointer;
    color: red;
}

.hidden-cont {
    display: none;
}

.input-field {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(204, 204, 204)!important;
    font-size: 16px;
    color: #333;
    padding: 5px;
    background: transparent;
}

#personalInfo {
    width: 100%;
    display: none;
}

.personalDet {
    padding: 0 5%!important;
    width:100%;
}

.info{
    width:85%;
    margin-left:2%;
}

.profile-image-container {
    position: relative;
   /* width: 15%;*/
    height: 100px;
}

#profileImage {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

#imageEditIcon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: white;
    color: #333;
    border-radius: 50%;
    padding: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    display: none; /* Hidden initially */
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh; /* Add a max height */
    overflow-y: auto; /* Scroll if content is long */
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.modal-btn {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.modal-content h3 {
    margin-top: 0;
}

.skill-perk-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0;
}

.skill-perk-item input[type="checkbox"] {
    margin-right: 10px;
}

.rank-input {
    width: 50px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.close-btn:hover{
    color:#000;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 5px 0;
}

.modal-body{
    padding:15px 20px;
    overflow-y: auto;
    flex:1;
}

.modal-footer{
    padding:10px 20px;
    border-top:1px solid #ddd;
    display:flex;
    justify-content:space-between;
    background-color:#fafafa;
}

.modal-header,
.modal-footer,
.search-box {
    padding: 15px 20px;
    z-index: 1;
    position: relative;
}

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    /*  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05); */
    text-align: center;
}

.login-card h1 {
    margin-bottom: 10px;
}

.login-card p {
    color: #555;
    margin-bottom: 25px;
}

form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

label {
    margin-bottom: 5px;
    font-weight: 600;
}

input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 15px;
}

button {
    padding: 10px;
    background-color: #1485ba;
    color: white;
    border: none;
    border-radius: 8px !important;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #1bb1f8;
}

.login-button {
    margin-top: 10px;
    border: none;
    border-radius: 8px;
}

#self-register {
    padding: 12px;
    background-color: #03ad98 !important;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    margin-top: 10px;
}

#self-register:hover, #self-register:focus {
    background-color: #04e6ca !important;
}

.actions {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.actions a {
    color: #1485ba;
    text-decoration: none;
}

.actions a:hover {
    text-decoration: underline;
}

.perk-category {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 6px;
}

.category-header {
    background-color: #f0f0f0;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.category-items {
    padding: 10px;
    display: none;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}
.error-message {
    background-color: #edc9c9;
    color: red;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}
.error
{
    border: 1px solid red !important;
}
.file-error {
    border: 1px solid red !important;
}

.skill-perk-item {
    margin-bottom: 8px;
}

.main-container {
    display: flex;
    gap: 20px;
}

.sidebar-menu {
    margin-top:20px;
    width: 350px;
    background-color: #f0f4f8;
    padding: 15px;
    border: solid 1px #d0d6dd;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 10px;
}

.sidebar-menu ul {
    list-style-type: none;
    padding: 0;
}

.sidebar-menu ul li {
    margin-bottom: 10px;
    height:36px;
}

.sidebar-menu ul li a {
    text-decoration: none;
    color: #434b54;
    font-weight: bold;
}

.sidebar-menu ul li a:hover {
    text-decoration: underline;
}

.main-content {
    flex: 1;
}

.prefer-location {
    display:flex;
    gap:25px;
}

.distance-options {
    padding:5px;
}

.nav-icon {
    padding:12px;
    text-align:center;
}

.active-nav {
    border-radius: 1px;
    background-color: #ddf4fe;
}

.active-nav a {
    color: #22697e !important;
}

.applicant-status {
    position: absolute;
    left: 52%;
    transform: translateX(-50%);
    background-color: #d1f5ec;
    color: #08556c;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.select-border {
    border-bottom:1px solid rgb(204,204,204) !important;
    border-radius: 10px;
}

.status-drp {
    display: flex;
    gap:15px;
}

.name-det {
    display:flex;
    gap:5px;
}

.experience-status {
    color: #08556c;
    font-size: 14px;
    font-weight: bold;
}

.badge {
    padding: 5px 10px;
    border-radius: 50% !important;
    top: 10px;
    position: absolute;
    background-color: #ff2626;
}

.notification-badge {
   position: relative;
    top: -70px;
    left: 50px;
    background-color: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
}

.disabled-btn {
    cursor: not-allowed !important;
}
 
.sidebar-menu {
    margin-top: 20px;
    width: 350px;
    background-color: #f0f4f8;
    padding: 15px;
    border: solid 1px #d0d6dd;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 10px;
}

.sidebar-menu ul {
    list-style-type: none;
    padding: 0;
}

.sidebar-menu ul li {
    margin-bottom: 10px;
    height: 36px;
}

.sidebar-menu ul li a {
    text-decoration: none;
    color: #434b54;
    font-weight: bold;
}

.sidebar-menu ul li a:hover {
    text-decoration: underline;
}

.dashboard-profile {
    margin-left: 34%;
    margin-block: auto;
    font-weight: bold;
    color: #a1a5a9;
}

.profile-style {
    text-decoration: none;
    color: black;
}
.upload-form {
    /*display: inline-flex;
    flex-flow:column;*/
    gap: 20px;
}
    
.file-group {
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 20px;
}
.upload-brdr{
    border:none !important;
}
.file-group label {
    margin-left: 15px;
    width: 20%;
}
/*.documents
{
    display:flex;
    gap:20px;
}*/
.file-group-upload {
    margin-top: 20px;
}
.upload-container {
    background: #fff;
    padding: 25px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
}

    .upload-container h2 {
        margin-bottom: 20px;
        font-size: 22px;
        text-align: center;
    }

.file-input-group {
    margin-bottom: 15px;
}
.file-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
    .file-input-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

.input-fileType {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fafafa;
}

.file-list {
    margin-top: 20px;
    padding-left: 15px;
}

    .file-list li {
        font-size: 14px;
        margin-bottom: 5px;
        color: #333;
    }
.btns{
    display: flex;
    gap: 20px;
    float: right;
    margin-top:-35px;
}
#display-message {
    font-size: 16px;
    margin-bottom: 10px;
}

.clickable {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}
.table-responsive {
    margin-top: 20px;
    background: #fff;
}

.document-table {
    width: 100%;
    border-collapse: collapse;
    min-width: auto;
}

    .document-table th, .document-table td {
        padding: 14px 16px;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
        color: #444;
    }

    .document-table th {
        background-color: #f9fafb;
        color: #333;
        font-weight: 600;
    }

.action-icon {
    cursor: pointer;
    font-size: 16px;
    margin-right: 8px;
    transition: color 0.2s;
}

    .action-icon.edit:hover {
        color: #1485ba;
    }

    .action-icon.delete:hover {
        color: red;
    }
.hidden-input {
    display: none !important;
}
.doc-actions{
    display:flex;
    gap:10px;
}
.attachment i {
    margin-right: 8px;
    font-size: 16px;
}

.attachment a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.attch-brdr {
    border-top: 1px solid white;
    gap: 0px !important;
}
.link-clr
{
    color: white;
}
.rank-error {
    border-color:red;
}
.side-links{
    display:flex;
    gap:20px;
}
.notify-me {
    display: flex;
    gap: 0px;
    margin: 14px 0px 0px 10px;
}
.notify-me-main {
    position: relative;
    left: 14%;
}
.income-div{
    display:flex;
    gap:10px;
}
.incomeDrp{
    width:100% !important;
}
.read-income{
    display:flex;
    gap:15px;
}
.no-skill-incentive {
    margin-top: 10px;
    margin-left: 2%;
}
.profile-content{
    max-width:80vh;
}
.dashboard-document {
    margin-left: 32%;
}
.previewbtn-physician {
    border: 2px solid #98a5b3;
    color: #202428;
    background-color: #f2f4f7;
}
.profile-prgrss {
    box-shadow: none;
    background-color: #d2f4ed;
    padding: 1px;
}
.profile-prgrss-content {
    margin-left: 20px;
    margin-top: 10px;
}
