﻿/*MANAGE PLANTATION*/
.manageCompanyButton {
    cursor: pointer;
    width: 3rem;
    display: flex;
    height: 43px;
    color: white;
    border-radius: 20%;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
}

.manageCompanyButton i {
    font-size: 20px;
    display: flex;
}

.plantationProfileGMaps {
    cursor: pointer;
    width: 3rem;
    display: flex;
    height: 43px;
    color: white;
    border-radius: 20%;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
}

.plantationProfileGMaps i {
    font-size: 20px;
    display: flex;
}

/*PLANTATION DASHBOARD SUMMARY*/
.pdStatContainer {
    min-width: 200px;
    margin-right: 10px;
    padding: 15px;
    max-width: 300px;
}

.pdStatContainerMobile {
    min-width: 160px;
    margin-right: 10px;
    padding: 15px;
}

.pdStatContainerTitle {
    font-family: Inter, sans-serif;
    font-size: 13px;
    color: #0b0e2c;
    font-weight: 500;
}

.pdStatContainerValue {
    font-family: Inter, sans-serif;
    font-size: 17px;
    color: #0b0e2c;
    font-weight: 500;
    margin-right: 10px;
    margin-top: 8px;
}

.pdStatContainerValueMobile {
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #0b0e2c;
    font-weight: 500;
    margin-right: 4px;
    margin-top: 8px;
}

.plantationIconContainer {
    width: 30px;
    height: 30px;
    border-radius: 10px;
}

.plantationIconContainer i {
    font-size: 15px;
}

.plantationIconCount {
    background: #EEFDF6;
}

.plantationIconCount i {
    color: #23A253;
}

.plantationIconCropTypes {
    background: #FBF5FF;
}

.plantationIconCropTypes i {
    color: #A956F6;
}

.plantationIconAreaSize {
    background: #F0F9FB;
}

.plantationIconAreaSize i {
    color: #1F57D8;
}

.plantationIconCropCount {
    background: #F3FCFD;
}

.plantationIconCropCount i {
    color: #0CAFD5;
}

.pdCropDistChartContainer {
    height: 186px;
    width: 320px;
    overflow: hidden;
}

/*PLANTATION DASHBOARD LIST*/
.plAddNewButton {
    font-family: Inter, sans-serif;
    font-size: 13px;
    margin-left: 15px;
}

.plAddNewButtonMobile {
    font-family: Inter, sans-serif;
    font-size: 11px;
    margin-left: 10px;
    padding: 5px;
}

.plColHeaderMobile {
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 1.167em;
    font-weight: 500;
    color: #6f7182;
    padding-left: 24px;
    background-color: #f7f9fc;
    width: 50%;
    height: 100%;
}

.plColValueMobile {
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.143em;
    font-weight: 400;
    color: #0b0e2c;
    padding-left: 24px;
    background-color: white;
    width: 50%;
    height: 100%;
}

.plColCropTypesValue {
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.143em;
    font-weight: 400;
    color: #0b0e2c;
    padding-left: 24px;
    background-color: white;
}

.plCropTypeContainer {
    font-family: Inter, sans-serif;
    font-size: 12px;
    padding: 5px;
    background-color: #edfbee;
    box-shadow: none;
    color: #13a570;
    border-radius: 10px;
}

/*PLANTATION LAYOUT BUILDER*/
.plbSideBarToggle {
    position: absolute;
    left: 8px;
    top: 18px;
}

.plbSideBarToggle i {
    font-size: 22px;
    color: black;
}

.pblSideBarSmallIcon {
    transition: transform 300ms ease;
    transform-style: preserve-3d;
    width: 30px;
}

.pblSideBarSmallIcon:hover {
    transform: scale3d(1.10, 1.10, 1.05);
}

.plbSideBarTitle {
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #0b0e2c;
    font-weight: 700;
    margin-bottom: 10px;
}

.plbSideBarCaption {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #0b0e2c;
    font-weight: 500;
    margin-right: 10px;
    width: 40px;
}

.plbRangeSelector {
    width: 100px;
    margin-right: 10px;
}

.plbTextInput {
    font-family: Inter, sans-serif;
    font-size: 14px;
    text-align: center;
    width: 80px;
    padding: 5px;
}

.form-range::-webkit-slider-thumb {
    background-color: #16A34A;
}

/* Focus state for accessibility */
.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(50, 168, 82, 0.25);
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(50, 168, 82, 0.25);
}

.plantationCell {
    font-family: Inter, sans-serif;
    background: white;
    border: 1px solid rgb(203, 213, 225);
    border-radius: 10px;
    cursor: crosshair !important;
    color: rgb(51 65 85);
    transition-duration: 0.15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
}

.plantationCell:hover {
    background-color: rgb(241, 245, 249);
    border: 1px solid rgb(148, 163, 184);
}

.plantationCellTitleLvlOne {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 700;
}

.plantationCellTitleLvlTwo {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 2px;
}

.plantationCellTitleLvlThree {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 700;
    padding-bottom: 2px;
}

.plantationCellFooterLvlOne {
    margin-bottom: 10px;
    font-size: 14px;
    margin-right: 10px;
}

.plantationCellFooterLvlTwo {
    margin-bottom: 8px;
    font-size: 12px;
    margin-right: 10px;
}

.plantationCellFooterLvlThree {
    margin-bottom: 5px;
    font-size: 10px;
    margin-right: 8px;
}

.plantationCellGenderLvlOne {
    width: 22px;
    height: 22px;
    margin-left: 10px;
    border: 1px solid rgba(241, 245, 249, 1);
    border-radius: 5px;
    padding: 2px;
    margin-right: 3px;
}

.plantationCellGenderLvlTwo {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    border: 1px solid rgba(241, 245, 249, 1);
    border-radius: 5px;
    padding: 2px;
    margin-right: 3px;
}

.plantationCellGenderLvlThree {
    width: 11px;
    height: 11px;
    margin-left: 8px;
    margin-right: 3px;
}

.plantationCellIcon {
    width: 40%;
    margin: 0 auto;
}

    .plantationCellIcon img {
        max-width: 100%;
        height: auto;
        display: block;
    }

.plantationCellPositionBadge {
    padding: 10px;
    height: 32px;
    margin-right: 5px;
}

.plantationCellDetailsNoCropIcon {
    font-size: 100px;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #e7e7e7;
    width: 150px;
    height: 150px;
    padding: 20px;
    border-radius: 50%;
    border: 2px solid rgba(241, 245, 249, 1);
}

.plantationCellDetailsIcon {
    width: 150px;
    height: 150px;
    padding: 20px;
    border-radius: 50%;
    border: 2px solid rgba(241, 245, 249, 1);
    background: white;
}

.plantationCellDetailsTitle {
    font-family: Inter, sans-serif;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

.plantationCellDetailsSubtitle {
    font-family: Inter, sans-serif;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: #6f7182;
}

.plantationCellDetailsSectionTitle {
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #0b0e2c;
    font-weight: 700;
    margin-bottom: 10px;
}

.plantationCellDetailsRadio {
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #0b0e2c;
}
