﻿:root {
    --navbar-height: 90px;
    --message-title-height: 90px;
    --yellow: #E8D21A;
}


#phone, .iti {
    width: 100% !important;
}

#dashboardBanner {
    background: url("../images/dashboard/dashboard-banner.jpg");
    background-blend-mode: normal;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 300px;
}

.formatting-options {
    margin-bottom: 15px;
}

.format-btn {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 5px;
}

    .format-btn:hover {
        background-color: #ddd;
    }

.content-editable {
    border: 1px solid #ddd;
    padding: 10px;
    min-height: 200px;
    background-color: transparent;
    outline: none;
}

#descriptionContent.content-editable {
    min-height: 150px;
    overflow-y: auto;
}

.tag {
    min-width: 35px;
    text-align: center;
    min-height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

.talent-info-tag{
    border: solid 1px white;
    color: white!important;
}

.talent-info-tag p{
    color: white !important;
}

.tab-pane {
    min-height: 300px;
}

.message-title{
    height: var(--message-title-height);
}
.chats, .messages {
    height: calc(100vh - (var(--message-title-height) + var(--navbar-height)));
    overflow-y: auto;
}


.chat-container {
    overflow-y: auto;
    min-height: 400px;
}

.chat-header {
    height: 70px;
    display: none;
}

.chat-body {
    height: calc(100vh - (var(--message-title-height) + var(--navbar-height) + 140px));
    overflow-y: auto;
}

.message {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 75%;
    margin-bottom: 10px;
}

.sent {
    background: yellow;
    align-self: flex-end;
    color: black!important;
}

.sent p{
    color: black!important;
}

.received {
    background: black;
    color: white;
    align-self: flex-start;
}

#message-input {
    min-height: 40px; /* Default height */
    max-height: 200px; /* Prevent excessive growth */
    overflow-y: auto; /* Allow scrolling when max-height is reached */
    resize: none; /* Prevent manual resizing */
}

.chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    height: 70px;
}

    .chat-footer input, .chatbot-footer input {
        flex: 1;
        border: none;
        padding: 10px;
        border-radius: 5px;
        outline: none;
    }

    .chat-footer button {
        background: yellow;
        border: none;
        color: black;
        padding: 10px 15px;
        border-radius: 5px;
        margin-left: 5px;
    }

        .chat-footer button:hover {
            background: #ffcc00;
        }
.time-span{
    color: grey;
    font-size: 8px;
}
.back-btn {
    display: none;
    color: grey;
    cursor: pointer;
}
.back-btn:hover {
    color: black;
}

.messages.hide, #messanger.hide {
    display: none;
}

.chats {
    border-right: solid 1px lightgrey;
}
@media (max-width: 768px) {
    .chats {
        border-right: none;
    }

    .chats.selected {
        display: none;
    } 

    .back-btn{
        display: block;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 50px;
}

.range-slider {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none!important;
}

input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 3;
    background-color: var(--yellow);
}

input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 3;
    background-color: var(--yellow);
}

input[type="range"]::-webkit-slider-runnable-track {
    background-color: rgba(0,0,0,0);
}

input[type="range"]::-moz-slider-runnable-track {
    background-color: rgba(0,0,0,0);
}

.div-fill {
    position: absolute;
    height: 3px;
    width: 100%;
    top: 10px;
    background-color: darkgrey;
    z-index: 2;
    pointer-events: none;
    border-radius: 5px;
}

.lower-div-fill {
    position: absolute;
    height: 3px;
    width: 100%;
    top: 10px;
    background-color: white;
    z-index: 1;
    pointer-events: none;
    border-radius: 5px;
}


@media (max-width:992px) {
    #advancedSearch {
        cursor: pointer !important;
    }
}


.close-image {
    position: absolute;
    top: 10%;
    right: 10%;
}



.dropdown-menu {
    background-color: transparent !important;
}

.dropdown-btn, .dropdown-item {
    cursor: pointer;
}

.skill-badge {
    margin: 5px;
    cursor: pointer!important;
}

.star {
    font-size: 1.8rem;
    color: gray;
    cursor: pointer;
    transition: color 0.2s;
}

    .star.selected, .star.hovered {
        color: gold;
    }


.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-box {
    position: relative;
    width: 120px;
    height: 120px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 2px 5px;
}

#upload-btn {
    display: block;
    margin-top: 10px;
}

.profile-picture-upload{
    width: 125px;
}

    .profile-picture-upload img {
        object-fit: cover;
        object-position: center center;
        border-radius: 100%;
    }


.progress-container {
    width: 100%;
    margin: 20px auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 30px;
    position: relative;
    border: solid 2px white;
}

.progress-bar {
    width: 0;
    height: 100%;
    background: black;
    transition: width 0.5s ease-in-out;
}

.availability-tag {
    background-color: aliceblue;
    color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:7.5px;
}

.availability-tag h4 {
    font-weight: 500;
}

#nav-tab .nav-link {
    font-weight: 600;
    color: grey !important;
    border: none;
}

#nav-tab {
    border: none;
}

#nav-tab .nav-link.active {
    font-weight: 600;
    color: white !important;
    background-color: transparent;
}

.tab-container{
    border: solid 1px lightgrey;
    border-radius: 25px;
}

.talent-card-img {
    width:100px; 
    height:100px;
}

@media(max-width: 576px)
{
    .talent-card-img {
        width: 75px;
        height: 75px;
    }
}
.step{
    width: 175px;
    height: 40px;
    border-radius: 25px;
    border: solid 1px grey;
}
.notification-counter{
    color: black;
}
.number-container, .notification-counter-container {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: solid 1px var(--yellow);
}
.number-container {
    border: solid 1px var(--yellow);
}

.notification-counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow);
}

.line{
    flex-grow: 1;
    height: 1px;
    background-color: lightgrey;
}

.step-active {
    border: solid 1px var(--yellow);
}


.step-label {
    font-size: 12px;
}
#currentIndicator {
    display: none;
}
@media (max-width: 992px) {
    .step-label{
        display: none;
    }
    #currentIndicator {
        display: block;
    }
    .step {
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }

    .number-container {
        border: none;
    }


    .step-container {
        max-width: 400px
    }
}

.html-description, .html-description p, .html-description h1, .html-description h2, .html-description h3, .html-description h4, .html-description h5, .html-description h6, 
.html-description div, .html-description span  {
    font-size: 14px !important;
    color: black !important;
    line-height: normal!important;
}

@media (max-width: 768px) {
    .html-description, .html-description p, .html-description h1, .html-description h2, .html-description h3, .html-description h4, .html-description h5, .html-description h6,
    .html-description div, .html-description span {
        font-size: 12px !important;
    }

}

#degreeSelect.show{
    border: solid 1px lightgrey;
}

.custom-multiple-select-option{
    padding: 5px 10px;
    cursor: pointer;
}

.custom-multiple-select-option.selected{
    background-color: grey;
}

.custom-multiple-select-option:hover{
    background-color: lightgrey;
}


label {
    color: white !important;
    font-size: 1em !important;
}

@media (max-width: 576px) {
    label {
        color: white !important;
        font-size: 1em !important;
    }
}

input, textarea {
    border: solid 1px grey !important;
    background-color: transparent !important;
    padding: 1.25rem;
    color: white !important;
}

.form-control, .form-select {
    transition: border-color .25s ease-in-out,box-shadow .25s ease-in-out,background-color .25s ease-in-out;
}

    .form-select{
        color: white;
        background-color: transparent;
    }

    .form-select option{
        color: black!important;
        background-color: transparent!important;
    }

    .form-control:focus, .form-select:focus, .form-control:active, .form-select:active {
        border: 1px solid var(--yellow) !important;
        box-shadow: none !important;
    }

    .form-control[type="checkbox"] {
        padding: 1rem;
    }

    .form-control::placeholder {
        color: lightgrey;
        opacity: 1;
    }

    .form-control::-webkit-input-placeholder {
        color: lightgrey;
    }

    .form-control:-ms-input-placeholder {
        color: lightgrey;
    }

    .form-control::-moz-placeholder {
        color: lightgrey;
        opacity: 1;
    }

input:-moz-placeholder {
    color: lightgrey;
    opacity: 1;
}

.item-card{
    background-color: rgb(240, 240, 240);
    border-radius: 15px;
    color: black!important;
}