#areaMappingWrapper p,
#areaMappingNewWrapper p,
#areaMappingDetailsWrapper p {
    font-size: clamp(12px, 1.5vw, 16px);
}

#areaMappingWrapper strong,
#areaMappingNewWrapper strong,
#areaMappingDetailsWrapper strong {
    font-size: 12px;
    font-weight: bold;
}

.circle {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.circle-completed,
.areaMapping-progressBar-completed {
    background-color: rgb(0, 201, 80);
}

.circle-active,
.areaMapping-progressBar-active {
    background-color: rgb(43, 127, 255);
}

.circle-pending,
.areaMapping-progressBar-pending {
    background-color: rgb(240, 177, 0);
}

.status-boxes {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.status-box {
    width: 128px;
    border-radius: 16px;
    border: 1px solid #888;
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
}

.status-box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-box-top h1 {
    font-size: clamp(16px, 2vw, 20px);
    margin: 0;
}

.status-box p {
    font-size: clamp(12px, 1.5vw, 16px);
    color: #444;
    margin: 0;
}

.shift-tabs {
    margin: 2rem auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.shift-tab {
    font-size: clamp(12px, 1.5vw, 16px);
    border-radius: 8px;
    border: 1px solid #888;
    padding: clamp(0.5rem, 1vw, 1rem);
    border-color: rgb(0, 0, 0, 0.1);
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.shift-tab-active {
    background-color: #5581FA;
    color: white;
    border-color: #5581FA;
}

.dfp-container {
    border-radius: 8px;
    border: 1px solid rgb(0, 0, 0, 0.1);
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
}

.dfp-header h1 {
    font-size: clamp(16px, 2vw, 20px);
}

.dfp-boxes {
    display: flex;
    flex-wrap: wrap;
    background-color: #F5F5F5;
    padding: clamp(0.5rem, 1vw, 1rem);
    border-radius: 8px;
    gap: clamp(1rem, 2vw, 2rem);
    justify-content: space-between;
}

.dfp-box {
    flex: 128px 0 1;
    border-radius: 8px;
    padding: clamp(0.5rem, 1vw, 1rem);
    background-color: rgb(0, 128, 192, 0.5);
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.dfp-box2 {
    flex: auto 0 0;
    border: 3px solid rgb(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 3rem;
    background: none;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.dfp-box2-highlight {
    background-color: #ccc !important;
    border-color: #000;
}

.dfp-box-active {
    background-color: #E0EEFF;
}

.dfp-box-pending {
    background-color: #FFF3D2;
}

.dfp-box-completed {
    background-color: #E0FFEA;
}

.dfp-box h1 {
    font-size: clamp(12px, 1.5vw, 16px);
}

.dfp-box h2 {
    font-size: clamp(12px, 1.5vw, 16px);
    color: #444;
}

.dfp-box-staff-container {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.dfp-box-staff-container p {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(236, 236, 240, 0.5);
    border: 1px solid white;
    text-align: center;
    line-height: 32px;
}

.dfp-box-progress {
    background-color: #ccc;
    min-height: 4px;
    border-radius: 8px;
    overflow: hidden;
}

.dfp-box-progress-bar {
    display: block;
    width: 50%;
    height: 100%;
    border-radius: 8px;
}

.dfp-footer {

}

.dfp-footer-status-container {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 2rem);
}

.dfp-footer-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.dfp-footer-status p {
    margin: 0;
}

.dfp-footer-status-circle {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.overview-container {
    border-radius: 8px;
    border: 1px solid rgb(0, 0, 0, 0.1);
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 4rem;
}

.overview-header h1 {
    font-size: clamp(16px, 2vw, 20px);
}

.overview-details {
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
    box-shadow: 0 0 1px rgb(0, 0, 0, 0.5);
    border-radius: 8px;
}

.overview-details-top {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.overview-details-top .heading h1 {
    font-size: clamp(16px, 2vw, 20px);
}

.overview-details-top .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overview-details-top .top .status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.overview-details-top .top .status p {
    border-radius: 8px;
    padding: 0.5rem;
    border: 1px solid #ccc;
    margin: 0;
}

.overview-details-top .top .status .circle {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.overview-details-bottom {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
}

.overview-details-bottom .task-progress {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
}

.overview-details-bottom .task-progress .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overview-details-bottom .staff-details .bottom {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.overview-details-bottom .staff-details .bottom p {
    border-radius: 8px;
    padding: 0.5rem;
    background-color: rgba(236, 236, 240, 0.5);
    margin: 0;
}

.overview-details-bottom .staff-details .bottom .initials-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(236, 236, 240, 0.5);
    border: 1px solid white;
    text-align: center;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-details-staff-card-wrapper {
    border-radius: 8px;
    padding: 0.5rem;
    background-color: rgba(236, 236, 240, 0.5);
    margin: 0;
}

.overview-details-staff-card-wrapper p {
    background: none;
    margin: 0;
}

.overview-details-bottom .assigned-tasks .bottom {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.overview-details-bottom .assigned-tasks .bottom p {
    border-radius: 8px;
    padding: 0.5rem;
    background-color: #ECEEF2;
    color: #5581FA;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.overview-details-bottom .assigned-tasks .bottom .completed-task {
    border-radius: 8px;
    padding: 0.5rem;
    background-color: #5581FA;
    color: #fff;
}

#areaMappingDetailsWrapper .overview-details-bottom hr,
#areaMappingNewWrapper .overview-details-bottom hr {
    width: 100%;
    height: 1px;
    margin: 0.5rem auto;
}

#areaMappingDetailsWrapper .overview-details-bottom .assigned-tasks .bottom,
#areaMappingNewWrapper .overview-details-bottom .assigned-tasks .bottom {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

#areaMappingDetailsWrapper .overview-details-bottom .assigned-tasks .bottom .task-detail,
#areaMappingNewWrapper .overview-details-bottom .assigned-tasks .bottom .task-detail {
    border-radius: 4px;
    padding: 0.5rem;
    background-color: rgba(236, 236, 240, 0.5);
    color: blue;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

#areaMappingDetailsWrapper .overview-details-bottom .assigned-tasks .bottom p,
#areaMappingNewWrapper .overview-details-bottom .assigned-tasks .bottom p {
    background: none;
    color: blue;
    margin: 0;
}

#areaMappingDetailsWrapper .overview-details-bottom .staff-details .top,
#areaMappingNewWrapper .overview-details-bottom .staff-details .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#areaMappingDetailsWrapper .overview-details-bottom .staff-details .bottom,
#areaMappingNewWrapper .overview-details-bottom .staff-details .bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.overview-details-bottom .staff-card {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    background-color: rgba(236, 236, 240, 0.5);
    padding: 0.5rem;
    border-radius: 4px;
}

.overview-details-bottom .staff-card h1 {
    font-size: clamp(12px, 1.5vw, 16px);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-color: rgba(236, 236, 240, 0.5);
    border: 1px solid white;
    border-radius: 50%;
    transform: scale(0.8);
}

.overview-details-bottom .staff-card h2 {
    font-size: clamp(12px, 1.5vw, 16px);
}

.overview-details-bottom .staff-card p {
    margin: 0;
    background: none !important;
    border: none;
    padding: 0 !important;
}

.overview-details-bottom button {
    width: 100%;
    padding: 0.5rem;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgb(0, 0, 0, 0.1);
    font-size: 12px;
}

.overview-details-progress {
    width: 100%;
    height: 8px;
    border-radius: 8px;
    background-color: #ccc;
    overflow: hidden;
}

.overview-details-progress-bar {
    display: block;
    width: 50%;
    height: 100%;
    border-radius: 8px;
}

.detailed-information {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.detailed-information .top h1 {
    font-size: clamp(16px, 2vw, 20px);
}

.detailed-information .bottom {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
    background-color: rgba(236, 236, 240, 0.5);
    padding: clamp(0.5rem, 1vw, 1rem);
    border-radius: 8px;
}

.detailed-information .bottom .detail-row {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    flex-wrap: wrap;
}

.detailed-information .bottom .detail-row div {
    flex: 128px 1 1;
}

.detailed-information .bottom .detail-row p {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
}

.new-dropdown {
    border-radius: 16px;
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
}

.new-dropdown .header h1 {
    font-size: clamp(20px, 2.5vw, 24px);
}

.new-dropdown .body select {
    width: 100%;
    min-height: 2rem;
}

.new-dropdown .body p {
    margin: 0;
}

.new-dropdown .selected-area-info {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
}

.new-dropdown .selected-area-info .dfp-box {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
    background-color: #eee;
    border: 1px solid #888;
}

.new-dropdown .selected-area-info h1 {
    font-size: clamp(16px, 2vw, 20px);
}

.new-dropdown .selected-area-info p {
    margin: 1rem 0 0 0;
}

.new-dropdown .selected-area-info h2 {
    font-size: clamp(12px, 1.5vw, 16px);
}

.new-dropdown .ts-control {
    display: flex;
    flex-direction: column;
}

.new-dropdown #staffSelectContainer .item,
.new-dropdown #taskSelectContainer .item {
    display: none;
}

.new-dropdown-review {
    border-radius: 8px;
    border: 1px solid red;
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
    border: 1px solid #5581FA;
    background-color: #EAF1FF;
}

.new-dropdown .body .review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.new-dropdown .buttons {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.new-dropdown .buttons button {
    padding: 0.5rem;
}

.new-dropdown .staff-card {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    background-color: #eee;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.new-dropdown .staff-card h1 {
    font-size: clamp(12px, 1.5vw, 16px);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-color: #aaa;
    border-radius: 50%;
    transform: scale(0.8);
}

.new-dropdown .staff-card h2 {
    font-size: clamp(12px, 1.5vw, 16px);
}

.new-dropdown .staff-card p {
    margin: 0;
    background: none !important;
    border: none;
    padding: 0 !important;
}

.new-dropdown .staff-card .task-list {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 1rem);
    margin-top: 0.5rem;
}

.new-dropdown .staff-card .task-list p,
.new-dropdown .staff-card .task-list strong {
    display: block;
    padding: 0.25rem 0.5rem !important;
    border-radius: 8px;
    font-size: 12px;
    background-color: #D0E0FF;
    color: #5581FA;
}

.new-dropdown .staff-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.areaMapping-button {
    width: 100%;
    padding: 0.5rem;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgb(0, 0, 0, 0.1);
    font-size: 12px;
}

.areaMapping-button-blue {
    background-color: #5581FA;
    color: white;
}

.areaMapping-overview-task-completed {
    background-color: #5581FA !important;
    color: #fff !important;
}

.areaMapping-detail-row-status-text {
    background-color: #ECEEF2;
    color: #5581FA;
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgb(0, 0, 0, 0.1);
}