*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
    user-select: none;
    text-transform: capitalize;
}
#email{
    text-transform: lowercase;
}

body{
    width: 100%;
    height: fit-content;
    background-color: #f3f3f3;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: black;
}
button{
    border: none;
    background-color: transparent;
}
input{
    outline: none;
    border: none;
}

.container{
    width: 100%;
    height: fit-content;
    display: flex;
}
.my-message{
    position: fixed;
    top: 25px;
    right: 25px;
    width: 300px;
    height: 50px;
    background-color: #f25822;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    z-index: 99;
    padding: 0px 20px;
    text-transform: capitalize;
}


.mobile-nav{
    display: none;
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    background-color: white;
    justify-content: space-around;
    align-items: center;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
.mlink{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.mlink i{
   color: #f25822;
}
.mlink span{
    font-size: 10px;
    font-weight: 600;
}

.container-colone{
    width: 25%;
    height: fit-content;
    position: fixed;
    top: 0px;
    left: 0px;
    padding-top: 20px;
}
.user-info-box{
    width: 80%;
    height: 100px;
    background-color: white;
    margin: 10px auto;
    display: flex;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    text-transform: capitalize;
}
.img-box{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-box .img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    overflow: hidden; 
    border:2px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.img-box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;    
}

.info-box{
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    text-transform: capitalize;
}

.category-box{
    width: 80%;
    height: fit-content;
    background-color: white;
    margin: 10px auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 8px;
    padding-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.category-box  .link{
    width: 250px;
    height: 40px;
    background-color: #f3f3f3;
    display: flex;
    margin-top: 15px;
    border-radius: 8px;
}
.category-box  .link .icon{
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.category-box  .link .text{
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 14px;
    
}
.container-coltwo{
    width: 75%;
    height: fit-content;
    margin-left: 25%;
}
.search-box{
    width: 90%;
    height: 100px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search{
    width: 80%;
    height: 60px;
    border: 2px solid #f25822;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.search input{
    width: 100%;
    height: 100%;
    padding: 20px;
    font-size: 14px;
}
.search button{
   width: 100px;
   height: 100%;
   position: absolute;
   top: 0px;
   right: 0px;
   background-color: #f25822;
   color: white;
   font-size: 20px;
}
.important-links{
    width: 90%;
    height: 70px;
    margin: 10px auto;
    display: flex;
    justify-content:center;
    align-items:center;
    background-color:white;
    border-radius:10px;
}
.important-links ul{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.important-links ul a{
    color:gray;
    font-size:14px;
}
.earning-box{
    width: 90%;
    height: 210px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 10px;
    background-color: white;
    gap: 15px;
}
.earning-box .earing{
    width: 80px;
    height: 40px;
    border-bottom: 3px solid #696969;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    font-weight: 500;
    color: #696969;
}
.earning-box .withdrawbtn{
    padding: 10px 15px;
    background-color: #696969;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.earning-box .earing-message{
    font-size: 14px;
    color: #f25822;
    display: none;
}
.jobs-box{
    width: 90%;
    height: fit-content;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.jobs-card{
    width: 100%;
    height: fit-content;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 10px;
    background-color: white;
    padding:20px 20px 45px;
    position: relative;
}
.jobs-card a.applybtn{
    position: absolute;
    bottom: 25px;
    right: 25px;
    padding: 10px 15px;
    background-color: #f25822;
    border-radius: 25px;
    font-size: 14px;
    color: #e5e5e5;
    font-weight: 600;
}
.jobs-card span.created{
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-size: 14px;
    color: #777676;
}
.jobs-card h3{
    font-size: 16px;
    color: rgb(28, 27, 27);
}
.jobs-card .company{
    font-size: 14px;
    color: #5e5d5d;
}
.jobs-card .des{
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.jobs-card ul{
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.jobs-card ul li{
    font-size: 14px;
    padding: 10px 15px;
    background-color: #e5e5e5;
    color: #6a6a6a;
    border-radius: 5px;
}
.jobs-card ul li#closed{
    color: white;
    font-weight: 500;
    border-radius: 25px;
    background-color: #5e5d5d;
}
.jobs-card ul li#active{
    color: white;
    font-weight: 500;
    border-radius: 25px;
    background-color: rgba(31, 133, 61, 0.667);
}
.jobs-card ul li span{
    color: #f25822;
}
.jobs-card ul li.salary{
    font-size: 14px;
    padding: 10px 15px;
    background-color: white;
    color: #f25822;
    border-radius: 5px;
    border: 1px solid #f25822;
}
.jobs-card ul .applicants{
    font-size: 14px;
    color: #5e5d5d;
    background-color: transparent;
    padding: 0px;
}
.jobs-card button {
    border: none;
    margin-top: 25px;
    background: transparent;
    color: #5e5d5d;
    font-size: 12px;
}
.jobs-card .action{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    display: block;
    padding: 10px 25px;
}
.jobs-card .action-info{
    width: 130px;
    height: fit-content;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    border-radius: 8px;
    background: white;
}
.jobs-card .card-action-info-inner{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 15px;
}
.jobs-card .card-action-info-inner .hidebtn{
    position: absolute;
    top: 7px;
    right: 7px;
    color: #5e5d5d;
    font-size: 18px;
    cursor: pointer;
}
.jobs-card .card-action-info-inner ul{
    flex-direction: column;
    gap: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.jobs-card .card-action-info-inner li{
    padding: 0px;
    background-color: transparent;
}
.jobs-card .card-action-info-inner li a{
    padding: 0px;
    background-color: transparent;
    font-size: 14px;
    color: #5e5d5d;
    cursor: pointer;
}
.jobs-card .card-action-info-inner li button{
    padding: 0px;
    color: black;
    font-size: 14px;
    margin-top: 10px;
    color: #5e5d5d;
    cursor: pointer;
}
.jobs-card .card-action-info-inner li button.statusbtn{
    padding: 5px 15px;
    background-color: #5e5d5d;
    color: white;
    border-radius: 15px;
}
.jobs-card .card-action-info-inner li button i{
    margin-right: 5px;
    color: #5e5d5d;
}
.detail-box{
    width: 90%;
    height: fit-content;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-detail{
    width: 100%;
    height: fit-content;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    border-radius: 14px;
    background-color: white;
    padding: 25px;
    position: relative;
}
.job-detail .sub-heading{
    margin-top: 30px;
}
.job-detail .sub-heading h4{
    font-size: 13px;
    color: #f25822;
    letter-spacing: 0.5px;
}
.job-detail span.created{
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 14px;
    color: #777676;
}
.job-detail h3{
    font-size: 16px;
    color: rgb(28, 27, 27);
}
.job-detail .company{
    font-size: 14px;
    color: #5e5d5d;
}
.job-detail .des{
    margin-top: 10px;
    line-height:23px;
    padding: 10px;
    background: #f3f3f3;
    border-radius: 10px;
    padding: 15px;
    font-size: 14px;
}
.job-detail ul{
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.job-detail ul li{
    font-size: 14px;
    padding: 7px 15px;
    background-color: #e5e5e5;
    color: #6a6a6a;
    border-radius: 5px;
}
.job-detail ul li span{
    color: #f25822;
}
.job-detail ul li.salary{
    font-size: 14px;
    padding: 10px 15px;
    background-color: white;
    color: #f25822;
    border-radius: 5px;
    border: 1px solid #f25822;
}
.job-detail ul .applicants{
    font-size: 14px;
    color: #5e5d5d;
    background-color: transparent;
    padding: 0px;
}
.job-detail  .apply-form{
    width: 60%;
    height: fit-content;
    margin: 15px auto;
    padding-top: 20px;
}
.apply-form .input-box{
    width: 100%;
    height: 60px;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}
.apply-form .error-box{
    width:100%;
   display:flex;
   justify-content:end;
   font-size:14px;
   margin-bottom:15px;
   color: #f25822;
}
.apply-form .input-box input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding:20px;
}

.apply-form .file-input-box{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    margin-bottom:5px;
}
.apply-form .file-input-box label{
    font-size: 18px;
    color: #f25822;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.apply-form .button-box{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.application-table{
    width: 90%;
    height: fit-content;
    margin: 30px auto;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 10px;
    margin-bottom: 25px;
    gap: 10px;
    background-color: white;
    overflow: hidden;
    padding-bottom: 15px;
}
.application-table .download_cv{
    padding: 10px 15px;
    background-color: #f25822;
    color: white;
    font-size: 14px;
    border-radius: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0px auto;
    background-color: #ffffff;
}

th, td {
    padding: 15px;
    text-align: left;
    border-top: 1px solid #ddd;
}

th {
    background-color: #5e5d5d;
    color: white;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
}



caption {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.2em;
}
.addbook-container{
    width: 90%;
    height: fit-content;
    margin: 30px auto;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 10px;
    margin-bottom: 25px;
    gap: 10px;
    background-color: white;
    overflow: hidden;
}
.addbook-container form{
    width: 100%;
}
.form-head{
    min-width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0px;
}
.form-head h3 {
    font-size: 24px;
}
.form-head h3 span{
    color: #f25822;
}
.image-preview{
    min-width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}
.image-preview .img{
    width: 200px;
    height: 200px;
    position: relative;
}
.image-preview .img i{
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 18px;
    color: #f25822;
}
.image-preview .img img{
    width: 100%;
    height: 100%;
}
.input-books{
    width: 100%;
    height: fit-content;
    padding: 15px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.input-message-box{
    width: 80%;
    height: fit-content;
    margin-bottom: 15px;
    display: flex;
    justify-content: end;
    color: #f25822;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}
.input-message-box i{
    margin-right: 5px;
}
.image-input-box{
    width: 40%;
    height: 50px;
    border: 2px solid #f25822;
    border-radius: 10px;
    margin-bottom: 15px;
}
.image-input-box label{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #f25822;
}
.image-input-box label i{
    margin-right: 10px;
}
#degree-wrapper{
    width: 80%;
}
#degree-wrapper .input-container-box{
    width: 100%;
}
#degree-wrapper .input-container-box .input-box{
    width: 100%;
}
#degree-wrapper .input-container-box .remove-skill{
    padding: 10px 14px;
    background-color: #ff0000b5;
    color: white;
    border-radius: 6px;
    margin-bottom: 15px;
}
.button-box {
    justify-content: end;
}
.button-box .add-degree{
    background-color: #333;
    color: white;
    cursor: pointer;
}

#skills-wrapper{
    width: 80%;
}
#skills-wrapper .input-container-box{
    width: 100%;
}
#skills-wrapper .input-container-box .input-box{
    width: 100%;
}
#skills-wrapper .input-container-box .remove-skill{
    padding: 10px 14px;
    background-color: #ff0000b5;
    color: white;
    border-radius: 6px;
    margin-bottom: 15px;
}

.button-box .add-skill{
    background-color: #333;
    color: white;
    cursor: pointer;
}

.input-box{
    width: 80%;
    height: 50px;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}
.input-box input{
    width: 100%;
    height: 100%;
    padding: 10px;
    color: #696969;
    font-weight: 500;
}

.text-box {
    width: 80%;
    border: 2px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}
.text-box textarea{
    width: 100%;
    height: auto; /* Auto to allow dynamic resizing */
    min-height: 300px; /* Minimum height for the textarea */
    padding: 10px;
    resize: none; /* Prevent manual resizing (optional) */
    border: none;
    outline: none;
    text-transform: capitalize;
    word-spacing: 3px;
    overflow: hidden;
    line-height: 23px;
}
.select-box{
    width: 80%;
    height: 50px;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}
.select-box select{
    width: 100%;
    height: 100%;
    padding: 10px;
    border: none;
    outline: none;
    color: #696969;
    font-weight: 600;
}
.button-box{
    width: 80%;
    height: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 10px;
}

.button-box button{
    padding: 10px 20px;
    background-color: #f25822;
    color: white;
    font-weight: 600;
    border-radius: 8px;
}
.userprofile-page{
    width: 90%;
    height: 200px;
    margin: 30px auto;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 10px;
    margin-bottom: 25px;
    gap: 10px;
    background-color: white;
    overflow: hidden;
    border: 2px solid #f25822;
}
.profile-colone{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-colone .img-box{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Ensures any content outside the box is hidden */
    display: flex;    /* Optional: Centers the image if it's smaller */
    align-items: center;
    justify-content: center;
    border:2px solid black;
}
.profile-colone .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image scales and fills the box proportionally */
    display: block;    /* Removes any inline gaps around the image */
}
.profile-coltwo{
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}
.profile-coltwo i{
    margin-right: 7px;
}
.editprofile{
    width: 90%;
    height: fit-content;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 10px;
    margin-bottom: 25px;
    gap: 10px;
    background-color: white;
    overflow: hidden;
    border: 2px solid #f25822;
    padding-top: 30px;
}
.editprofile .img-container{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    padding: 15px 0px;
}
.editprofile .img-input{
    width: 120px;
    height: 120px;
    position: relative;
}
.editprofile .img-input #remove-btn{
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 18px;
    color: #f25822;
}
.editprofile .image-box{
    width: 120px;
    height: 120px;
    border-radius: 10px;
    border: 2px solid black;
    position: relative;
    cursor: pointer;
    display: flex;    /* Optional: Centers the image if it's smaller */
    align-items: center;
    justify-content: center;
}
.editprofile .image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image scales and fills the box proportionally */
    display: block; 
    border-radius: 10px;
}
.editprofile .image-box #img-icon{
    position: absolute;
    right: -16px;
    bottom: -16px;
    z-index: 999;
    font-size: 30px;
}

