/* ======================== Dashboard ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, sans-serif;
    /* background-color: #e5e7e6; */
    background-color: #FFF;
    padding: 1rem;
}
body::-webkit-scrollbar
{
    width: 4px;
}
body::-webkit-scrollbar-track
{
    background: #FFF;
}
body::-webkit-scrollbar-thumb
{
    background: #2A3132;
}
.dashboard {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
}

.card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
}

/* Project Card */
.project-card {
    background: #76947F;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 25px 20px;
    border: none;
}
.userboxtext_heading
{
    font-size: 22px;
    margin: 0px;
    padding: 15px 0px 0px 0px;
    color: #FFF;
}
.userdescription_textdesign
{
    color: #FFF;
}
.profile-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.profile {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.profile-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    padding: 2px;
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.icon-button {
    background: white;
    /* border: 0.5px solid black; */
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.industry {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 5px;
    color: #666;
}

.bold {
    font-weight: 600;
    color: #000;
}

.progress-section {
    margin-bottom: 1.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.progress-bar {
    background: white;
    border-radius: 0.25rem;
    height: 0.5rem;
    overflow: hidden;
}

.progress-bar .progress {
    background: #000;
    height: 100%;
    transition: width 0.3s ease;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-report {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 0.5px solid black;
    border-radius: 3rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.send-button {
    background: #000;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Meetings Card */
.meetings-card
{
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05), inset -5px -5px 5px rgba(255, 255, 255, 0.5), 5px 5px 5px rgba(0, 0, 0, 0.05), -5px -5px 5px rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 15px 15px;
    background: #FFF;
    border: none;
    border: none;
}
.meetings-card1
{
    background: rgb(248, 248, 248);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 10px;
    min-height: 120px;
}

.meetings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.month-selector {
    background: white;
    border: none;
    border-radius: 3rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.calls-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.day {
    background: white;
    border-radius: 3rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid black;
}

.day.active {
    background: #86cdf9;
}

.day .number {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

.day .label {
    font-size: 0.8rem;
    color: #666;
}

/* Roadmap Card */
.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.add-task {
    background: #000;
    color: white;
    border: none;
    border-radius: 3rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.tasks {
    /* display: flex;
    flex-direction: column; */
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.task-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.task-progress {
    background: #ffffffba;
    border-radius: 30px;
    height: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid #dfd7d7;
}

.task-progress .progress {
    background: #73c9ff;
    height: 100%;
    transition: width 0.3s ease;
}

.task-users {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.user {
    background: #B85042;
    color: #FFF;
    width: 70px;
    text-align: center;
    font-size: 13px;
    padding: 5px 0px;
    border-radius: 18px;
    margin: 0px -3px 0px 0px;
    cursor: pointer;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Efficiency Card */
.efficiency-card {
    background: #000;
    color: white;
}

.efficiency-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.efficiency-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.chart {
    height: 8rem;
    background: linear-gradient(to top, #73c9ff 0%, transparent 100%);
    border-radius: 0.5rem;
}

/* Time Card */
.time-card {
    background: #eee;
}

.time-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-value {
    font-size: 2.5rem;
    font-weight: bold;
}

.time-value span {
    font-size: 1.5rem;
    font-weight: normal;
}

/* AI Assistant Card */
.ai-card {
    background: linear-gradient(135deg, white, #73c9ff);
    position: relative;
    overflow: hidden;
}

.ai-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.arrow-button {
    background: #73c9ff;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
}

.ai-image {
    position: absolute;
    bottom: 0;
    right: 0;
    /* border-top-left-radius: 1.5rem; */
    max-width: 56%;
    height: auto;
}

/* Responsive Design */
@media (min-width: 640px) {
    .dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    body {
        padding: 1.5rem;
    }

    .dashboard {
        gap: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .efficiency-value {
        font-size: 2.5rem;
    }

    .time-value {
        font-size: 3rem;
    }

    .time-value span {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .dashboard {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-card {
        grid-column: span 1;
    }

    .meetings-card {
        grid-column: span 2;
    }

    .roadmap-card {
        grid-column: span 2;
    }
}

@media (min-width: 1280px) {
    body {
        padding: 0rem;
    }

    .dashboard {
        gap: 2rem;
    }
}

button,
.card {
    /* border: 1px solid rgba(30, 30, 30, 0.501); */
}
.dashboardback_sidearea
{
    background: #FFEFBA;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FFFFFF, #FFEFBA);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FFFFFF, #FFEFBA); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.hrtext_heading
{
    font-size: 22px;
    margin: 0px;
    padding: 15px 0px 0px 0px;
}
.custom_roadmapsection
{
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05), inset -5px -5px 5px rgba(255, 255, 255, 0.5), 5px 5px 5px rgba(0, 0, 0, 0.05), -5px -5px 5px rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 15px 15px;
    background: #FFF;
    border: none;
}
.custom_roadmapsection1
{
    background: rgb(248, 248, 248);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 10px;
}
.hrticon_design
{
    padding: 20px 0px 0px 0px;;
}
.custom_timemapsection
{
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05), inset -5px -5px 5px rgba(255, 255, 255, 0.5), 5px 5px 5px rgba(0, 0, 0, 0.05), -5px -5px 5px rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 15px 15px;
    background: #FFF;
    border: none;
}
.custom_timemapsection1
{
    background: rgb(248, 248, 248);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 10px;
    height: 765px;
}
.task-header span
{
    font-size: 13px;
    padding: 0px 0px 0px 13px;
}
.employee_goaltabledesign
{
    border: 1px solid #97BC62;
}
.employee_goaltabledesign thead tr th
{
    background-color: #97BC62;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.employee_uheading
{
    font-size: 17px;
}
.emplybtn_clsbtn
{
    width: 100px;
    height: 40px;
    border-radius: 5px;
    background: #B85042;
    color: #FFF;
    font-size: 15px;
}
.emplybtn_clsbtn:hover
{
    background: #B85042;
    color: #FFF;
}
.emplybtn_scbtn
{
    width: 100px;
    height: 40px;
    border-radius: 5px;
    background: #526157;
    color: #FFF;
    font-size: 15px;
}
.emplybtn_scbtn:hover
{
    background: #A7BEAE;
    color: #FFF;
}

.form-control
{
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid #5e5959;
    border-radius: 5px;
    transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
    height: 37px;
    outline: none;
}
.form-control:focus
{
    border-color: none;
    box-shadow: none;
}
.scndphase_dprmnttext
{
    color: #FFF;
}
.gatbtn_design
{
    width: 125px;
    text-align: center;
    display: block;
    border: none;
    outline: none;
    height: 42px;
    border-radius: 30px;
    color: #FFF;
    font-size: 15px;
    background-color: #B85042;
}
.gatbtn_design1
{
    width: 125px;
    text-align: center;
    display: block;
    border: none;
    outline: none;
    height: 42px;
    border-radius: 30px;
    color: #FFF;
    font-size: 15px;
    background-color: #FFBF00;
}
.yftr_areadesign
{
    background-color: transparent;
    border-top: none;
}
.threebtn_design
{
    background-color: #375E97;
    border: none;
}
.threebtn_design .number
{
    color: #FFF;
}
.threebtn_design .label
{
    color: #FFF;
}
.threebtn_design1
{
    background-color: #FB6542;
    border: none;
}
.threebtn_design1 .number
{
    color: #FFF;
}
.threebtn_design1 .label
{
    color: #FFF;
}
.threebtn_design2
{
    background-color: #31473A;
    border: none;
}
.threebtn_design2 .number
{
    color: #FFF;
}
.threebtn_design2 .label
{
    color: #FFF;
}
.custom_taskarea
{
    width: 48%;
    float: left;
    margin: 0px 10px 14px 6px;
}

@media only screen and (max-width: 768px) {
    .dashboard {
        display: inline;
        padding: 10px 10px;
    }
    button, .card {
        margin-bottom: 10px;
    }
    .profile {
        display: inline;
    }
    .actions {
        position: relative;
        top: -35px;
        right: 12px;
    }
    .roadmap-card {
        grid-column: auto;
    }
    .calendar-days {
        display: inline;
    }
    .threebtn_design, .threebtn_design1 {
        margin-bottom: 10px;
    }
    .custom_taskarea {
        width: 96%;
    }
}
