﻿/*NOTE DETAIL*/
.noteDetailCropListContainer {
    height: 190px;
    background-color: #f7f9fc;
    padding: 10px;
    overflow: auto;
}

.noteDetailCropSelected {
    background-color: rgb(241, 245, 249);
    border: 1px solid rgb(148, 163, 184);
}

.noteDetailTextArea {
    height: 300px;
    resize: none;
    font-family: Inter, sans-serif;
}

/*NOTE LIST*/
.nlGroupTitle {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #0b0e2c;
    margin-bottom: 20px;
}

.nlItemContainer {
    margin-bottom: 20px;
    border: 1px solid #e9eaf3 !important;
    background-color: #fff;
    box-shadow: 0 2px 10px 0 rgba(25, 93, 194, 0.07) !important;
    border-radius: 16px !important;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nlItemTitle {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0b0e2c;
}

.nlItemDateContainer 
{
    margin-right: 20px;
    font-weight: 500;
    font-size: 12px;
    color: #303350;
    min-width: 100px;
}

.nlItemDateIcon {
    font-size: 11px;
    margin-right: 6px;
    margin-top: 1px;
    color: #303350;
}

.nlItemPriority {
    font-family: Inter, sans-serif;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 7px;
    padding-top: 7px;
    box-shadow: none;
    border-radius: 40px;
    margin-right: 16px;
    font-weight: 400;
}

.nlItemPriorityLow {
    background-color: #eaf4ff;
    color: #1476ff;
}

.nlItemPriorityMedium {
    background-color: #f6f1ff;
    color: #9240fb;
}

.nlItemPriorityHigh {
    background-color: #fff8f1;
    color: #ff9914;
}

.nlItemPriorityCritical {
    background-color: #ffeaea;
    color: #8a0c0c;
}

.nlItemUserProfileImg {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 50%;
}

.nlItemBodyContainer {
    margin-left: 20px;
    margin-right: 20px;
}

.nlItemDescValue {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    white-space: pre-wrap;
    color: #6f7182;
    padding: 15px;
    background-color: #f7f9fc;
    border-radius: 5px;
}

.nlItemFooterContainer {
    margin-top: 20px;
}

.nlItemPlantationTitle {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    white-space: pre-wrap;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 7px;
    padding-top: 7px;
    border-radius: 5px;
    background-color: #eaf4ff;
    color: #1476ff;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: #0b0e2c;
    box-shadow: none;
}

.plAddNewButton {
    font-family: Inter, sans-serif;
    font-size: 12px;
    margin-right: 15px;
}