.fields-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fields-content-grid {
    flex-grow: 1; /* Allow content to fill vertical space */
    display: grid;
    grid-template-columns: 2fr 1fr; /* Map is 2/3, list is 1/3 */
    gap: 1.5rem;
    padding: 1.5rem;
    overflow: hidden; /* Prevent container from scrolling */
}

.field-map-container,
.field-list-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#drawing-map {
    border-radius: 8px;
    background-color: #e9e9e9;
}

.field-list-container h2 {
    margin-top: 0;
}

.instructions {
    background-color: #eef7ff;
    color: #3171e0;
    border: 1px solid #d1e7ff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

#fields-list {
    flex-grow: 1;
    overflow-y: auto;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
}

.field-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.field-item:last-child {
    border-bottom: none;
}