.img-container {
    width: inherit;
    height: 355px;
    background-position: 0%;
    background-size: contain;
    background-repeat: no-repeat;

    display: flex;
    justify-content: start;
    align-items: center;
    
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    pointer-events: none; 
    background-color: rgba(0, 255, 0, 0.5);
    border: 1px black solid;
}
.grid-overlay .grid-cell {
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.drone-img {
    max-width: 100%;
    height: auto;
}
.parcel-container{
    display: flex;
    flex-direction: column;
    padding-left: 4.5em;
    width:60%;
    height: 65%;
}
.parcel-row {
    display: flex;
    height: inherit;
    width: 100%;
}

.parcel {
    width: 50%;
    height: 100%;
    max-width: 80px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
}

.parcel:hover {
    opacity: 0.5;
}

.parcel-selected {
    background-color: var(--parcel-color);
    opacity: 0.5;
}

.devices-list {
    margin-top: 20px;
}

.devices-list.active {
    display: block;
}

.sowing-pill {
    width: 32px;
    height: 19px;

    background: var(--sowing-color) 0% 0% no-repeat padding-box;
    
    border: 2px solid;
    border-color: color-mix(in srgb, var(--sowing-color), black 50%);
    border-radius: 10px;
    opacity: 1;
    margin-right: 3px;
    margin-left: 15px;
}

.sowing-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 50px;
}
.sowing-list-element {
    display: flex;
}

.device-list-outer {
    background: rgba(235, 235, 235, 0.5) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    
}

.device-list-inner {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #8A949E80;
    border-radius: 10px;
    opacity: 1;

    margin-right: 20px;
    padding:20px;
    min-width: 250px;
}

.device-separator {
    border: 1px solid #8A949E80;
    opacity: 1;
    margin:10px 0 10px 0;
}

.depth-separator {
    width: 0px;
    height: 25px;
    border: 1px solid #C4C9CE;
    opacity: 1;
}

.device-select {
    padding: 8px;
    background: #EBEBEB 0% 0% no-repeat padding-box;
    border-radius: 20px;
    opacity: 1;
    margin: 0 15px 0 15px;
    width: 80px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.device-select-upper {
    display: flex;
    justify-content: space-between;

}

.parcel-culture-round {
    width: 20px;
    height: 20px;

    background: var(--device-list-color) 0% 0% no-repeat padding-box;
    border: 2px solid;
    border-color: color-mix(in srgb, var(--device-list-color), black 50%);
    border-radius: 10px;
    opacity: 1;
    margin: 0 10px 0 0;
}

.device-select-element {
    background: #EBEBEB 0% 0% no-repeat padding-box;
    border-radius: 18px;
    opacity: 1;
    padding: 10px 20px 10px 20px;
    margin-left: 25px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;

}
.device-select-element.active {
    background: #5065F6 0% 0% no-repeat padding-box;
    color: white;
}

.device-list-inner:hover .device-select {
    background: #5065F6 0% 0% no-repeat padding-box;
    color: white;
}

.white-checkmark {
    height: 13px;
    width: 13px;
}

.white-checkmark-background {
    background: #5065F6 0% 0% no-repeat padding-box;
    border-radius: 18px;
    opacity: 1;

    width: 28px;
    height: 28px;
}

.blue-border-white-text {
    background: #5065F6 0% 0% no-repeat padding-box;
    color: white;
    border-radius: 20px;
    border: 1px solid;
    padding: 10px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width:250px;
}

.device-listing-separator {
    border: 1px solid #8A949E;
    opacity: 0.5;
    margin: 30px;
}

.sowing-border {
    background-color: var(--sowing-color);

    max-height:35px;
    padding: 5px 15px 5px 15px;
    margin-right: 15px;
    border-radius: 31px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;    
}

.parcel-culture-round-secondary {
    width: 20px;
    height: 20px;

    background: var(--sowing-color) 0% 0% no-repeat padding-box;
    border: 2px transparent;
    border-radius: 10px;
    opacity: 1;
    margin: 0 10px 0 0;
}

